OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 { | 4 { |
5 'variables': { | 5 'variables': { |
6 'chromium_code': 1, | 6 'chromium_code': 1, |
7 | 7 |
8 'variables': { | 8 'variables': { |
9 'version_py_path': 'tools/build/version.py', | 9 'version_py_path': 'tools/build/version.py', |
10 'version_path': 'VERSION', | 10 'version_path': 'VERSION', |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 'platform_locale_settings_grd': | 67 'platform_locale_settings_grd': |
68 'app/resources/locale_settings_linux.grd', | 68 'app/resources/locale_settings_linux.grd', |
69 }], | 69 }], |
70 ], | 70 ], |
71 },], | 71 },], |
72 ['os_posix == 1 and OS != "mac" and OS != "linux"', { | 72 ['os_posix == 1 and OS != "mac" and OS != "linux"', { |
73 'platform_locale_settings_grd': | 73 'platform_locale_settings_grd': |
74 'app/resources/locale_settings_linux.grd', | 74 'app/resources/locale_settings_linux.grd', |
75 },], | 75 },], |
76 ['OS=="mac"', { | 76 ['OS=="mac"', { |
77 'tweak_info_plist_path': 'tools/build/mac/tweak_info_plist', | 77 'tweak_info_plist_path': '../build/mac/tweak_info_plist.py', |
78 'nacl_defines': [ | 78 'nacl_defines': [ |
79 'NACL_WINDOWS=0', | 79 'NACL_WINDOWS=0', |
80 'NACL_LINUX=0', | 80 'NACL_LINUX=0', |
81 'NACL_OSX=1', | 81 'NACL_OSX=1', |
82 ], | 82 ], |
83 'platform_locale_settings_grd': | 83 'platform_locale_settings_grd': |
84 'app/resources/locale_settings_mac.grd', | 84 'app/resources/locale_settings_mac.grd', |
85 'conditions': [ | 85 'conditions': [ |
86 ['branding=="Chrome"', { | 86 ['branding=="Chrome"', { |
87 'mac_bundle_id': 'com.google.Chrome', | 87 'mac_bundle_id': 'com.google.Chrome', |
(...skipping 701 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
789 '-k0', | 789 '-k0', |
790 '-s0', | 790 '-s0', |
791 '<(branding)', | 791 '<(branding)', |
792 '<(mac_bundle_id)'], | 792 '<(mac_bundle_id)'], |
793 }, | 793 }, |
794 { | 794 { |
795 # Make sure there isn't any Objective-C in the helper app's | 795 # Make sure there isn't any Objective-C in the helper app's |
796 # executable. | 796 # executable. |
797 'postbuild_name': 'Verify No Objective-C', | 797 'postbuild_name': 'Verify No Objective-C', |
798 'action': [ | 798 'action': [ |
799 'tools/build/mac/verify_no_objc.sh', | 799 '../build/mac/verify_no_objc.sh', |
800 ], | 800 ], |
801 }, | 801 }, |
802 ], | 802 ], |
803 'conditions': [ | 803 'conditions': [ |
804 ['mac_breakpad==1', { | 804 ['mac_breakpad==1', { |
805 'variables': { | 805 'variables': { |
806 # A real .dSYM is needed for dump_syms to operate on. | 806 # A real .dSYM is needed for dump_syms to operate on. |
807 'mac_real_dsym': 1, | 807 'mac_real_dsym': 1, |
808 }, | 808 }, |
809 'xcode_settings': { | 809 'xcode_settings': { |
(...skipping 519 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1329 'sources': [ | 1329 'sources': [ |
1330 'browser/safe_browsing/signature_util.h', | 1330 'browser/safe_browsing/signature_util.h', |
1331 'browser/safe_browsing/signature_util_win.cc', | 1331 'browser/safe_browsing/signature_util_win.cc', |
1332 'tools/safe_browsing/sb_sigutil.cc', | 1332 'tools/safe_browsing/sb_sigutil.cc', |
1333 ], | 1333 ], |
1334 }, | 1334 }, |
1335 ]}, # 'targets' | 1335 ]}, # 'targets' |
1336 ], # OS=="win" | 1336 ], # OS=="win" |
1337 ], # 'conditions' | 1337 ], # 'conditions' |
1338 } | 1338 } |
OLD | NEW |