| 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 698 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 786 '-k0', | 786 '-k0', |
| 787 '-s0', | 787 '-s0', |
| 788 '<(branding)', | 788 '<(branding)', |
| 789 '<(mac_bundle_id)'], | 789 '<(mac_bundle_id)'], |
| 790 }, | 790 }, |
| 791 { | 791 { |
| 792 # Make sure there isn't any Objective-C in the helper app's | 792 # Make sure there isn't any Objective-C in the helper app's |
| 793 # executable. | 793 # executable. |
| 794 'postbuild_name': 'Verify No Objective-C', | 794 'postbuild_name': 'Verify No Objective-C', |
| 795 'action': [ | 795 'action': [ |
| 796 'tools/build/mac/verify_no_objc.sh', | 796 '../build/mac/verify_no_objc.sh', |
| 797 ], | 797 ], |
| 798 }, | 798 }, |
| 799 ], | 799 ], |
| 800 'conditions': [ | 800 'conditions': [ |
| 801 ['mac_breakpad==1', { | 801 ['mac_breakpad==1', { |
| 802 'variables': { | 802 'variables': { |
| 803 # A real .dSYM is needed for dump_syms to operate on. | 803 # A real .dSYM is needed for dump_syms to operate on. |
| 804 'mac_real_dsym': 1, | 804 'mac_real_dsym': 1, |
| 805 }, | 805 }, |
| 806 'xcode_settings': { | 806 'xcode_settings': { |
| (...skipping 549 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1356 'sources': [ | 1356 'sources': [ |
| 1357 'browser/safe_browsing/signature_util.h', | 1357 'browser/safe_browsing/signature_util.h', |
| 1358 'browser/safe_browsing/signature_util_win.cc', | 1358 'browser/safe_browsing/signature_util_win.cc', |
| 1359 'tools/safe_browsing/sb_sigutil.cc', | 1359 'tools/safe_browsing/sb_sigutil.cc', |
| 1360 ], | 1360 ], |
| 1361 }, | 1361 }, |
| 1362 ]}, # 'targets' | 1362 ]}, # 'targets' |
| 1363 ], # OS=="win" | 1363 ], # OS=="win" |
| 1364 ], # 'conditions' | 1364 ], # 'conditions' |
| 1365 } | 1365 } |
| OLD | NEW |