| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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': [ |
| 11 ['chrome_exe_target==1', { | 11 ['chrome_exe_target==1', { |
| 12 'sources': [ | 12 'sources': [ |
| 13 # .cc, .h, and .mm files under app that are used on all | 13 # .cc, .h, and .mm files under app that are used on all |
| 14 # platforms, including both 32-bit and 64-bit Windows. | 14 # platforms, including both 32-bit and 64-bit Windows. |
| 15 # Test files are not included. | 15 # Test files are not included. |
| 16 'app/breakpad_win.cc', | 16 'app/breakpad_win.cc', |
| 17 'app/breakpad_win.h', | 17 'app/breakpad_win.h', |
| 18 'app/chrome_exe_main_gtk.cc', | 18 'app/chrome_exe_main_gtk.cc', |
| 19 'app/chrome_exe_main_mac.mm', | 19 'app/chrome_exe_main_mac.cc', |
| 20 'app/chrome_exe_main_win.cc', | 20 'app/chrome_exe_main_win.cc', |
| 21 'app/chrome_exe_resource.h', | 21 'app/chrome_exe_resource.h', |
| 22 'app/client_util.cc', | 22 'app/client_util.cc', |
| 23 'app/client_util.h', | 23 'app/client_util.h', |
| 24 'app/hard_error_handler_win.cc', | 24 'app/hard_error_handler_win.cc', |
| 25 'app/hard_error_handler_win.h', | 25 'app/hard_error_handler_win.h', |
| 26 'app/scoped_ole_initializer.h', | 26 'app/scoped_ole_initializer.h', |
| 27 # TODO(bradnelson): once automatic generation of 64 bit targets on | 27 # TODO(bradnelson): once automatic generation of 64 bit targets on |
| 28 # Windows is ready, take this out and add a dependency on | 28 # Windows is ready, take this out and add a dependency on |
| 29 # content_common.gypi. | 29 # content_common.gypi. |
| (...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 393 # "More Helpers" share a UUID with the original helper, there's | 393 # "More Helpers" share a UUID with the original helper, there's |
| 394 # no need to run dsymutil or dump_syms again. All helpers can | 394 # no need to run dsymutil or dump_syms again. All helpers can |
| 395 # share the same .dSYM and Breakpad symbol file. | 395 # share the same .dSYM and Breakpad symbol file. |
| 396 'postbuild_name': 'Make More Helpers', | 396 'postbuild_name': 'Make More Helpers', |
| 397 'action': [ | 397 'action': [ |
| 398 'tools/build/mac/make_more_helpers.sh', | 398 'tools/build/mac/make_more_helpers.sh', |
| 399 '<(version_full)', | 399 '<(version_full)', |
| 400 '<(mac_product_name)', | 400 '<(mac_product_name)', |
| 401 ], | 401 ], |
| 402 }, | 402 }, |
| 403 { |
| 404 # Make sure there isn't any Objective-C in the browser app's |
| 405 # executable. |
| 406 'postbuild_name': 'Verify No Objective-C', |
| 407 'action': [ |
| 408 'tools/build/mac/verify_no_objc.sh', |
| 409 ], |
| 410 }, |
| 403 ], # postbuilds | 411 ], # postbuilds |
| 404 }], | 412 }], |
| 405 ['OS=="linux"', { | 413 ['OS=="linux"', { |
| 406 'conditions': [ | 414 'conditions': [ |
| 407 ['branding=="Chrome"', { | 415 ['branding=="Chrome"', { |
| 408 'dependencies': [ | 416 'dependencies': [ |
| 409 'linux_installer_configs', | 417 'linux_installer_configs', |
| 410 ], | 418 ], |
| 411 }], | 419 }], |
| 412 ['selinux==0', { | 420 ['selinux==0', { |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 531 'configurations': { | 539 'configurations': { |
| 532 'Common_Base': { | 540 'Common_Base': { |
| 533 'msvs_target_platform': 'x64', | 541 'msvs_target_platform': 'x64', |
| 534 }, | 542 }, |
| 535 }, | 543 }, |
| 536 }, | 544 }, |
| 537 ], | 545 ], |
| 538 }], | 546 }], |
| 539 ], | 547 ], |
| 540 } | 548 } |
| OLD | NEW |