OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 'target_defaults': { | 6 'target_defaults': { |
7 'variables': { | 7 'variables': { |
8 'chrome_exe_target': 0, | 8 'chrome_exe_target': 0, |
9 }, | 9 }, |
10 'target_conditions': [ | 10 'target_conditions': [ |
(...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
326 # CFBundleSignature of CHROMIUM_CREATOR | 326 # CFBundleSignature of CHROMIUM_CREATOR |
327 # Xcode then replaces these values with the branded values we set | 327 # Xcode then replaces these values with the branded values we set |
328 # as settings on the target. | 328 # as settings on the target. |
329 'CHROMIUM_BUNDLE_ID': '<(mac_bundle_id)', | 329 'CHROMIUM_BUNDLE_ID': '<(mac_bundle_id)', |
330 'CHROMIUM_CREATOR': '<(mac_creator)', | 330 'CHROMIUM_CREATOR': '<(mac_creator)', |
331 'CHROMIUM_SHORT_NAME': '<(branding)', | 331 'CHROMIUM_SHORT_NAME': '<(branding)', |
332 }, | 332 }, |
333 'dependencies': [ | 333 'dependencies': [ |
334 'helper_app', | 334 'helper_app', |
335 'infoplist_strings_tool', | 335 'infoplist_strings_tool', |
336 # This library provides the real implementation for NaClSyscallSeg | |
337 '../native_client/src/trusted/service_runtime/arch/x86_32/service_ru
ntime_x86_32.gyp:service_runtime_x86_32_chrome' | |
338 ], | 336 ], |
339 'actions': [ | 337 'actions': [ |
340 { | 338 { |
341 # Generate the InfoPlist.strings file | 339 # Generate the InfoPlist.strings file |
342 'action_name': 'Generating InfoPlist.strings files', | 340 'action_name': 'Generating InfoPlist.strings files', |
343 'variables': { | 341 'variables': { |
344 'tool_path': '<(PRODUCT_DIR)/infoplist_strings_tool', | 342 'tool_path': '<(PRODUCT_DIR)/infoplist_strings_tool', |
345 # Unique dir to write to so the [lang].lproj/InfoPlist.strings | 343 # Unique dir to write to so the [lang].lproj/InfoPlist.strings |
346 # for the main app and the helper app don't name collide. | 344 # for the main app and the helper app don't name collide. |
347 'output_path': '<(INTERMEDIATE_DIR)/app_infoplist_strings', | 345 'output_path': '<(INTERMEDIATE_DIR)/app_infoplist_strings', |
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
523 'configurations': { | 521 'configurations': { |
524 'Common_Base': { | 522 'Common_Base': { |
525 'msvs_target_platform': 'x64', | 523 'msvs_target_platform': 'x64', |
526 }, | 524 }, |
527 }, | 525 }, |
528 }, | 526 }, |
529 ], | 527 ], |
530 }], | 528 }], |
531 ], | 529 ], |
532 } | 530 } |
OLD | NEW |