| 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 397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 408 'app/chrome_exe.ver', | 408 'app/chrome_exe.ver', |
| 409 'app/chrome_dll.ver', | 409 'app/chrome_dll.ver', |
| 410 'app/nacl64_exe.ver', | 410 'app/nacl64_exe.ver', |
| 411 'app/other.ver', | 411 'app/other.ver', |
| 412 ], | 412 ], |
| 413 'includes': [ | 413 'includes': [ |
| 414 'version_resource_rules.gypi', | 414 'version_resource_rules.gypi', |
| 415 ], | 415 ], |
| 416 }, | 416 }, |
| 417 { | 417 { |
| 418 # GN version: //chrome:version_header | |
| 419 'target_name': 'chrome_version_header', | |
| 420 'type': 'none', | |
| 421 'hard_dependency': 1, | |
| 422 'actions': [ | |
| 423 { | |
| 424 'action_name': 'version_header', | |
| 425 'variables': { | |
| 426 'lastchange_path': | |
| 427 '<(DEPTH)/build/util/LASTCHANGE', | |
| 428 'branding_path': 'app/theme/<(branding_path_component)/BRANDING'
, | |
| 429 }, | |
| 430 'inputs': [ | |
| 431 '<(version_path)', | |
| 432 '<(branding_path)', | |
| 433 '<(lastchange_path)', | |
| 434 'version.h.in', | |
| 435 ], | |
| 436 'outputs': [ | |
| 437 '<(SHARED_INTERMEDIATE_DIR)/version.h', | |
| 438 ], | |
| 439 'action': [ | |
| 440 'python', | |
| 441 '<(version_py_path)', | |
| 442 '-f', '<(version_path)', | |
| 443 '-f', '<(branding_path)', | |
| 444 '-f', '<(lastchange_path)', | |
| 445 'version.h.in', | |
| 446 '<@(_outputs)', | |
| 447 ], | |
| 448 'message': 'Generating version header file: <@(_outputs)', | |
| 449 }, | |
| 450 ], | |
| 451 }, | |
| 452 { | |
| 453 'target_name': 'crash_service', | 418 'target_name': 'crash_service', |
| 454 'type': 'executable', | 419 'type': 'executable', |
| 455 'dependencies': [ | 420 'dependencies': [ |
| 456 'installer_util', | 421 'installer_util', |
| 457 '../base/base.gyp:base', | 422 '../base/base.gyp:base', |
| 458 '../chrome/common_constants.gyp:common_constants', | 423 '../chrome/common_constants.gyp:common_constants', |
| 459 '../components/components.gyp:breakpad_crash_service', | 424 '../components/components.gyp:breakpad_crash_service', |
| 460 ], | 425 ], |
| 461 'include_dirs': [ | 426 'include_dirs': [ |
| 462 '..', | 427 '..', |
| (...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 828 '<(DEPTH)/third_party/kasko' | 793 '<(DEPTH)/third_party/kasko' |
| 829 ], | 794 ], |
| 830 }, | 795 }, |
| 831 }, | 796 }, |
| 832 }, | 797 }, |
| 833 }, | 798 }, |
| 834 ], | 799 ], |
| 835 }], | 800 }], |
| 836 ], # 'conditions' | 801 ], # 'conditions' |
| 837 } | 802 } |
| OLD | NEW |