Chromium Code Reviews| 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 'variables': { | 6 'variables': { |
| 7 'conditions': [ | 7 'conditions': [ |
| 8 ['inside_chromium_build==0', { | 8 ['inside_chromium_build==0', { |
| 9 'webkit_src_dir': '../../../../..', | 9 'webkit_src_dir': '../../../../..', |
| 10 },{ | 10 },{ |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 113 'type': '<(library)', | 113 'type': '<(library)', |
| 114 'msvs_guid': 'DB162DE1-7D56-4C4A-8A9F-80D396CD7AA8', | 114 'msvs_guid': 'DB162DE1-7D56-4C4A-8A9F-80D396CD7AA8', |
| 115 'dependencies': [ | 115 'dependencies': [ |
| 116 '<(DEPTH)/app/app.gyp:app_base', | 116 '<(DEPTH)/app/app.gyp:app_base', |
| 117 '<(DEPTH)/base/base.gyp:base_i18n', | 117 '<(DEPTH)/base/base.gyp:base_i18n', |
| 118 ], | 118 ], |
| 119 'actions': [ | 119 'actions': [ |
| 120 { | 120 { |
| 121 'action_name': 'webkit_version', | 121 'action_name': 'webkit_version', |
| 122 'inputs': [ | 122 'inputs': [ |
| 123 '../build/webkit_version.py', | 123 '<(script)', |
| 124 '<(webkit_src_dir)/Source/WebCore/Configurations/Version.xcconfig', | 124 '<(version_file)', |
| 125 '../../build/util/lastchange.py', # Used by the script. | |
| 125 ], | 126 ], |
| 126 'outputs': [ | 127 'outputs': [ |
| 127 '<(INTERMEDIATE_DIR)/webkit_version.h', | 128 '<(INTERMEDIATE_DIR)/webkit_version.h', |
| 128 ], | 129 ], |
| 129 'action': ['python', '<@(_inputs)', '<(INTERMEDIATE_DIR)'], | 130 'action': ['python', '<(script)', '<(version_file)', '<(INTERMEDIATE_D IR)'], |
|
Evan Martin
2011/01/21 20:29:34
fixed wrapping in followup change
| |
| 131 'variables': { | |
| 132 'script': '../build/webkit_version.py', | |
| 133 'version_file': '<(webkit_src_dir)/Source/WebCore/Configurations/Ver sion.xcconfig', | |
| 134 }, | |
| 130 }, | 135 }, |
| 131 ], | 136 ], |
| 132 'include_dirs': [ | 137 'include_dirs': [ |
| 133 '<(INTERMEDIATE_DIR)', | 138 '<(INTERMEDIATE_DIR)', |
| 134 ], | 139 ], |
| 135 'sources': [ | 140 'sources': [ |
| 136 'user_agent.cc', | 141 'user_agent.cc', |
| 137 'user_agent.h', | 142 'user_agent.h', |
| 138 ], | 143 ], |
| 139 # Dependents may rely on files generated by this target or one of its | 144 # Dependents may rely on files generated by this target or one of its |
| (...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 524 }], | 529 }], |
| 525 ['inside_chromium_build==0', { | 530 ['inside_chromium_build==0', { |
| 526 'dependencies': [ | 531 'dependencies': [ |
| 527 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', | 532 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', |
| 528 ], | 533 ], |
| 529 }], | 534 }], |
| 530 ], | 535 ], |
| 531 }, | 536 }, |
| 532 ], | 537 ], |
| 533 } | 538 } |
| OLD | NEW |