1# Copyright 2016 The Chromium Authors. All rights reserved. 2# Use of this source code is governed by a BSD-style license that can be 3# found in the LICENSE file. 4 5# This exposes the Chrome branding as GN variables for use in build files. 6# 7# PREFER NOT TO USE THESE. The GYP build uses this kind of thing extensively. 8# However, it is far better to write an action to generate a file at 9# build-time with the information you need. This allows better dependency 10# checking and GN will run faster. 11# 12# These values should only be used if you REALLY need to depend on them at 13# build-time, for example, in the computation of output file names. 14 15import("//build/config/chrome_build.gni") 16 17_branding_dictionary_template = "full_name = \"@PRODUCT_FULLNAME@\" " + 18 "short_name = \"@PRODUCT_SHORTNAME@\" " + 19 "bundle_id = \"@MAC_BUNDLE_ID@\" " + 20 "creator_code = \"@MAC_CREATOR_CODE@\" " 21 22_branding_file = "//chrome/app/theme/$branding_path_component/BRANDING" 23_result = exec_script("version.py", 24 [ 25 "-f", 26 rebase_path(_branding_file, root_build_dir), 27 "-t", 28 _branding_dictionary_template, 29 ], 30 "scope", 31 [ _branding_file ]) 32 33chrome_product_full_name = _result.full_name 34chrome_product_short_name = _result.short_name 35 36if (is_mac) { 37 chrome_mac_bundle_id = _result.bundle_id 38 chrome_mac_creator_code = _result.creator_code 39} 40