| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'user_agent', | 8 'target_name': 'user_agent', |
| 9 'type': '<(component)', | 9 'type': '<(component)', |
| 10 'defines': [ | 10 'defines': [ |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 'outputs': [ | 60 'outputs': [ |
| 61 '<(SHARED_INTERMEDIATE_DIR)/webkit_version.h', | 61 '<(SHARED_INTERMEDIATE_DIR)/webkit_version.h', |
| 62 ], | 62 ], |
| 63 'action': ['python', | 63 'action': ['python', |
| 64 '<(script)', | 64 '<(script)', |
| 65 '-f', '<(lastchange)', | 65 '-f', '<(lastchange)', |
| 66 '<(template)', | 66 '<(template)', |
| 67 '<@(_outputs)', | 67 '<@(_outputs)', |
| 68 ], | 68 ], |
| 69 'variables': { | 69 'variables': { |
| 70 'script': '<(DEPTH)/chrome/tools/build/version.py', | 70 'script': '<(DEPTH)/build/util/version.py', |
| 71 'lastchange': '<(DEPTH)/build/util/LASTCHANGE.blink', | 71 'lastchange': '<(DEPTH)/build/util/LASTCHANGE.blink', |
| 72 'template': '<(DEPTH)/webkit/build/webkit_version.h.in', | 72 'template': '<(DEPTH)/webkit/build/webkit_version.h.in', |
| 73 }, | 73 }, |
| 74 }, | 74 }, |
| 75 ], | 75 ], |
| 76 'direct_dependent_settings': { | 76 'direct_dependent_settings': { |
| 77 'include_dirs': [ | 77 'include_dirs': [ |
| 78 '<(SHARED_INTERMEDIATE_DIR)', | 78 '<(SHARED_INTERMEDIATE_DIR)', |
| 79 ], | 79 ], |
| 80 }, | 80 }, |
| 81 # Dependents may rely on files generated by this target or one of its | 81 # Dependents may rely on files generated by this target or one of its |
| 82 # own hard dependencies. | 82 # own hard dependencies. |
| 83 'hard_dependency': 1, | 83 'hard_dependency': 1, |
| 84 }, | 84 }, |
| 85 ], | 85 ], |
| 86 }], | 86 }], |
| 87 ], | 87 ], |
| 88 } | 88 } |
| OLD | NEW |