OLD | NEW |
---|---|
1 # Copyright 2012 The Chromium Authors. All rights reserved. | 1 # Copyright 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 { | 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': [ |
11 'WEBKIT_USER_AGENT_IMPLEMENTATION', | 11 'WEBKIT_USER_AGENT_IMPLEMENTATION', |
12 ], | 12 ], |
13 'variables': [ | |
grt (UTC plus 2)
2013/05/31 03:58:45
[ -> {
| |
14 'chromium_code': 1, | |
15 ], | |
13 'dependencies': [ | 16 'dependencies': [ |
14 '<(DEPTH)/base/base.gyp:base', | 17 '<(DEPTH)/base/base.gyp:base', |
15 '<(DEPTH)/base/base.gyp:base_i18n', | 18 '<(DEPTH)/base/base.gyp:base_i18n', |
16 ], | 19 ], |
17 'sources': [ | 20 'sources': [ |
18 'user_agent.cc', | 21 'user_agent.cc', |
19 'user_agent.h', | 22 'user_agent.h', |
20 'user_agent_util.cc', | 23 'user_agent_util.cc', |
21 'user_agent_util_ios.mm', | 24 'user_agent_util_ios.mm', |
22 'user_agent_util.h', | 25 'user_agent_util.h', |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
54 # This depends on the svn revision of third_party/WebKit but doe s | 57 # This depends on the svn revision of third_party/WebKit but doe s |
55 # not list it as a dependency. Incremental builds will have | 58 # not list it as a dependency. Incremental builds will have |
56 # the wrong WEBKIT_SVN_REVISION. | 59 # the wrong WEBKIT_SVN_REVISION. |
57 ], | 60 ], |
58 'outputs': [ | 61 'outputs': [ |
59 '<(SHARED_INTERMEDIATE_DIR)/webkit_version.h', | 62 '<(SHARED_INTERMEDIATE_DIR)/webkit_version.h', |
60 ], | 63 ], |
61 'action': ['python', '<(script)', '../../../third_party/WebKit/Sou rce', | 64 'action': ['python', '<(script)', '../../../third_party/WebKit/Sou rce', |
62 '<(SHARED_INTERMEDIATE_DIR)'], | 65 '<(SHARED_INTERMEDIATE_DIR)'], |
63 'variables': { | 66 'variables': { |
64 'script': '../build/webkit_version.py', | 67 'script': '../../build/webkit_version.py', |
65 }, | 68 }, |
66 }, | 69 }, |
67 ], | 70 ], |
68 'direct_dependent_settings': { | 71 'direct_dependent_settings': { |
69 'include_dirs': [ | 72 'include_dirs': [ |
70 '<(SHARED_INTERMEDIATE_DIR)', | 73 '<(SHARED_INTERMEDIATE_DIR)', |
71 ], | 74 ], |
72 }, | 75 }, |
73 # Dependents may rely on files generated by this target or one of its | 76 # Dependents may rely on files generated by this target or one of its |
74 # own hard dependencies. | 77 # own hard dependencies. |
75 'hard_dependency': 1, | 78 'hard_dependency': 1, |
76 }, | 79 }, |
77 ], | 80 ], |
78 }], | 81 }], |
79 ], | 82 ], |
80 } | 83 } |
OLD | NEW |