| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 { | 5 { |
| 6 'includes': [ | 6 'includes': [ |
| 7 'app_shell.gypi', | 7 'app_shell.gypi', |
| 8 ], | 8 ], |
| 9 'variables': { | 9 'variables': { |
| 10 # Product name is used for Mac bundle. | 10 # Product name is used for Mac bundle. |
| (...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 300 # Modify the Info.plist as needed. The script explains why | 300 # Modify the Info.plist as needed. The script explains why |
| 301 # this is needed. This is also done in the chrome target. | 301 # this is needed. This is also done in the chrome target. |
| 302 # The framework needs the Breakpad keys if this feature is | 302 # The framework needs the Breakpad keys if this feature is |
| 303 # enabled. It does not need the Keystone keys; these always | 303 # enabled. It does not need the Keystone keys; these always |
| 304 # come from the outer application bundle. The framework | 304 # come from the outer application bundle. The framework |
| 305 # doesn't currently use the SCM keys for anything, | 305 # doesn't currently use the SCM keys for anything, |
| 306 # but this seems like a really good place to store them. | 306 # but this seems like a really good place to store them. |
| 307 'postbuild_name': 'Tweak Info.plist', | 307 'postbuild_name': 'Tweak Info.plist', |
| 308 'action': ['../../build/mac/tweak_info_plist.py', | 308 'action': ['../../build/mac/tweak_info_plist.py', |
| 309 '--plist=${TARGET_BUILD_DIR}/${INFOPLIST_PATH}', | 309 '--plist=${TARGET_BUILD_DIR}/${INFOPLIST_PATH}', |
| 310 '--breakpad=1', | 310 '--breakpad=0', |
| 311 '--keystone=0', | 311 '--keystone=0', |
| 312 '--scm=1', | 312 '--scm=1', |
| 313 '--version=<(app_shell_version)', | 313 '--version=<(app_shell_version)', |
| 314 '--branding=<(app_shell_product_name)'], | 314 '--branding=<(app_shell_product_name)'], |
| 315 }, | 315 }, |
| 316 ], | 316 ], |
| 317 'conditions': [ | 317 'conditions': [ |
| 318 ['icu_use_data_file_flag==1', { | 318 ['icu_use_data_file_flag==1', { |
| 319 'mac_bundle_resources': [ | 319 'mac_bundle_resources': [ |
| 320 '<(PRODUCT_DIR)/icudtl.dat', | 320 '<(PRODUCT_DIR)/icudtl.dat', |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 401 '../../build/isolate.gypi', | 401 '../../build/isolate.gypi', |
| 402 ], | 402 ], |
| 403 'sources': [ | 403 'sources': [ |
| 404 'app_shell_unittests.isolate', | 404 'app_shell_unittests.isolate', |
| 405 ], | 405 ], |
| 406 }, | 406 }, |
| 407 ], | 407 ], |
| 408 }], | 408 }], |
| 409 ], | 409 ], |
| 410 } | 410 } |
| OLD | NEW |