Chromium Code Reviews| 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 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'content_shell_product_name': 'Content Shell', | 7 'content_shell_product_name': 'Content Shell', |
| 8 # The "19" is so that sites that sniff for version think that this is | 8 # The "19" is so that sites that sniff for version think that this is |
| 9 # something reasonably current; the "77.34.5" is a hint that this isn't a | 9 # something reasonably current; the "77.34.5" is a hint that this isn't a |
| 10 # standard Chrome. | 10 # standard Chrome. |
| (...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 400 '..', | 400 '..', |
| 401 ], | 401 ], |
| 402 'sources': [ | 402 'sources': [ |
| 403 'app/startup_helper_win.cc', | 403 'app/startup_helper_win.cc', |
| 404 'shell/app/shell_main.cc', | 404 'shell/app/shell_main.cc', |
| 405 ], | 405 ], |
| 406 'mac_bundle_resources': [ | 406 'mac_bundle_resources': [ |
| 407 'shell/app/app.icns', | 407 'shell/app/app.icns', |
| 408 'shell/app/app-Info.plist', | 408 'shell/app/app-Info.plist', |
| 409 ], | 409 ], |
| 410 'conditions': [ | |
| 411 ['icu_use_data_file_flag', { | |
| 412 'mac_bundle_resources': [ | |
| 413 '<(DEPTH)/third_party/icu/source/data/in/icudtl.dat', | |
| 414 ], | |
| 415 }], | |
| 416 ], | |
| 410 # TODO(mark): Come up with a fancier way to do this. It should only | 417 # TODO(mark): Come up with a fancier way to do this. It should only |
| 411 # be necessary to list app-Info.plist once, not the three times it is | 418 # be necessary to list app-Info.plist once, not the three times it is |
| 412 # listed here. | 419 # listed here. |
| 413 'mac_bundle_resources!': [ | 420 'mac_bundle_resources!': [ |
| 414 'shell/app/app-Info.plist', | 421 'shell/app/app-Info.plist', |
| 415 ], | 422 ], |
| 416 'xcode_settings': { | 423 'xcode_settings': { |
| 417 'INFOPLIST_FILE': 'shell/app/app-Info.plist', | 424 'INFOPLIST_FILE': 'shell/app/app-Info.plist', |
| 418 }, | 425 }, |
| 419 'msvs_settings': { | 426 'msvs_settings': { |
| 420 'VCLinkerTool': { | 427 'VCLinkerTool': { |
| 421 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS | 428 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
| 422 }, | 429 }, |
| 423 'VCManifestTool': { | 430 'VCManifestTool': { |
| 424 'AdditionalManifestFiles': [ | 431 'AdditionalManifestFiles': [ |
| 425 'shell/app/shell.exe.manifest', | 432 'shell/app/shell.exe.manifest', |
| 426 ], | 433 ], |
| 427 }, | 434 }, |
| 428 }, | 435 }, |
| 429 'conditions': [ | 436 'conditions': [ |
|
Mark Mentovai
2013/12/19 14:51:17
And this, the one on line 410.
| |
| 430 ['OS=="win" and win_use_allocator_shim==1', { | 437 ['OS=="win" and win_use_allocator_shim==1', { |
| 431 'dependencies': [ | 438 'dependencies': [ |
| 432 '../base/allocator/allocator.gyp:allocator', | 439 '../base/allocator/allocator.gyp:allocator', |
| 433 ], | 440 ], |
| 434 }], | 441 }], |
| 435 ['OS=="win"', { | 442 ['OS=="win"', { |
| 436 'sources': [ | 443 'sources': [ |
| 437 'shell/app/shell.rc', | 444 'shell/app/shell.rc', |
| 438 ], | 445 ], |
| 439 'configurations': { | 446 'configurations': { |
| (...skipping 421 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 861 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', | 868 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', |
| 862 '--destination_dir', '<(dest_dir)', | 869 '--destination_dir', '<(dest_dir)', |
| 863 ], | 870 ], |
| 864 }, | 871 }, |
| 865 ], | 872 ], |
| 866 }, | 873 }, |
| 867 ], | 874 ], |
| 868 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" | 875 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" |
| 869 ] | 876 ] |
| 870 } | 877 } |
| OLD | NEW |