| 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 # Define the common dependencies that contain all the actual | 8 # Define the common dependencies that contain all the actual |
| 9 # Chromium functionality. This list gets pulled in below by | 9 # Chromium functionality. This list gets pulled in below by |
| 10 # the link of the actual chrome (or chromium) executable on | 10 # the link of the actual chrome (or chromium) executable on |
| (...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 # is needed. This is also done in the chrome and chrome_dll | 223 # is needed. This is also done in the chrome and chrome_dll |
| 224 # targets. In this case, --breakpad=0, --keystone=0, and --scm=0 | 224 # targets. In this case, --breakpad=0, --keystone=0, and --scm=0 |
| 225 # are used because Breakpad, Keystone, and SCM keys are | 225 # are used because Breakpad, Keystone, and SCM keys are |
| 226 # never placed into the helper. | 226 # never placed into the helper. |
| 227 'postbuild_name': 'Tweak Info.plist', | 227 'postbuild_name': 'Tweak Info.plist', |
| 228 'action': ['<(tweak_info_plist_path)', | 228 'action': ['<(tweak_info_plist_path)', |
| 229 '--breakpad=0', | 229 '--breakpad=0', |
| 230 '--keystone=0', | 230 '--keystone=0', |
| 231 '--scm=0'], | 231 '--scm=0'], |
| 232 }, | 232 }, |
| 233 { | |
| 234 # Make sure there isn't any Objective-C in the helper app's | |
| 235 # executable. | |
| 236 'postbuild_name': 'Verify No Objective-C', | |
| 237 'action': [ | |
| 238 '../build/mac/verify_no_objc.sh', | |
| 239 ], | |
| 240 }, | |
| 241 ], | 233 ], |
| 242 'conditions': [ | 234 'conditions': [ |
| 243 ['mac_breakpad==1', { | 235 ['mac_breakpad==1', { |
| 244 'variables': { | 236 'variables': { |
| 245 # A real .dSYM is needed for dump_syms to operate on. | 237 # A real .dSYM is needed for dump_syms to operate on. |
| 246 'mac_real_dsym': 1, | 238 'mac_real_dsym': 1, |
| 247 }, | 239 }, |
| 248 'xcode_settings': { | 240 'xcode_settings': { |
| 249 # With mac_real_dsym set, strip_from_xcode won't be used. | 241 # With mac_real_dsym set, strip_from_xcode won't be used. |
| 250 # Specify CHROMIUM_STRIP_SAVE_FILE directly to Xcode. | 242 # Specify CHROMIUM_STRIP_SAVE_FILE directly to Xcode. |
| (...skipping 584 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 835 '<(DEPTH)/third_party/kasko' | 827 '<(DEPTH)/third_party/kasko' |
| 836 ], | 828 ], |
| 837 }, | 829 }, |
| 838 }, | 830 }, |
| 839 }, | 831 }, |
| 840 }, | 832 }, |
| 841 ], | 833 ], |
| 842 }], | 834 }], |
| 843 ], # 'conditions' | 835 ], # 'conditions' |
| 844 } | 836 } |
| OLD | NEW |