Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(29)

Side by Side Diff: webkit/common/user_agent/webkit_user_agent.gyp

Issue 165893002: Moving version script and gypi file to build\util. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Found the goof... tools -> util... :-/ Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698