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 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 | 8 |
9 'variables': { | 9 'variables': { |
10 'version_py_path': 'tools/build/version.py', | 10 'version_py_path': 'tools/build/version.py', |
(...skipping 451 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
462 'common/chrome_paths_win.cc', | 462 'common/chrome_paths_win.cc', |
463 'common/chrome_switches.cc', | 463 'common/chrome_switches.cc', |
464 'common/chrome_switches.h', | 464 'common/chrome_switches.h', |
465 'common/env_vars.cc', | 465 'common/env_vars.cc', |
466 'common/env_vars.h', | 466 'common/env_vars.h', |
467 'common/json_value_serializer.cc', | 467 'common/json_value_serializer.cc', |
468 'common/json_value_serializer.h', | 468 'common/json_value_serializer.h', |
469 'common/pref_names.cc', | 469 'common/pref_names.cc', |
470 'common/pref_names.h', | 470 'common/pref_names.h', |
471 ], | 471 ], |
472 'actions': [ | |
473 { | |
474 'action_name': 'Make chrome_version.cc', | |
475 'variables': { | |
476 'make_version_cc_path': 'tools/build/make_version_cc.py', | |
477 }, | |
478 'inputs': [ | |
479 '<(make_version_cc_path)', | |
480 'VERSION', | |
481 ], | |
482 'outputs': [ | |
483 '<(INTERMEDIATE_DIR)/chrome_version.cc', | |
484 ], | |
485 'action': [ | |
486 'python', | |
487 '<(make_version_cc_path)', | |
488 '<@(_outputs)', | |
489 '<(version_full)', | |
490 ], | |
491 'process_outputs_as_sources': 1, | |
492 }, | |
TVL
2009/10/14 21:09:15
see base.gyp:linux_versioninfo, yes, it reached up
Mark Mentovai
2009/10/14 21:26:46
TVL wrote:
| |
493 ], | |
472 }, | 494 }, |
473 { | 495 { |
474 'target_name': 'common', | 496 'target_name': 'common', |
475 'type': '<(library)', | 497 'type': '<(library)', |
476 'msvs_guid': '899F1280-3441-4D1F-BA04-CCD6208D9146', | 498 'msvs_guid': '899F1280-3441-4D1F-BA04-CCD6208D9146', |
477 'dependencies': [ | 499 'dependencies': [ |
478 'common_constants', | 500 'common_constants', |
479 'chrome_resources', | 501 'chrome_resources', |
480 'chrome_strings', | 502 'chrome_strings', |
481 'theme_resources', | 503 'theme_resources', |
(...skipping 6362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
6844 ], # targets when chrome_personalization==1 | 6866 ], # targets when chrome_personalization==1 |
6845 }], | 6867 }], |
6846 ], # 'conditions' | 6868 ], # 'conditions' |
6847 } | 6869 } |
6848 | 6870 |
6849 # Local Variables: | 6871 # Local Variables: |
6850 # tab-width:2 | 6872 # tab-width:2 |
6851 # indent-tabs-mode:nil | 6873 # indent-tabs-mode:nil |
6852 # End: | 6874 # End: |
6853 # vim: set expandtab tabstop=2 shiftwidth=2: | 6875 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |