OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 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 'target_defaults': { | 6 'target_defaults': { |
7 # Disable narrowing-conversion-in-initialization-list warnings in that we | 7 # Disable narrowing-conversion-in-initialization-list warnings in that we |
8 # do not want to fix it in data file "webcursor_gtk_data.h". | 8 # do not want to fix it in data file "webcursor_gtk_data.h". |
9 'cflags+': ['-Wno-narrowing'], | 9 'cflags+': ['-Wno-narrowing'], |
10 'cflags_cc+': ['-Wno-narrowing'], | 10 'cflags_cc+': ['-Wno-narrowing'], |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
126 'WEBKIT_GLUE_IMPLEMENTATION', | 126 'WEBKIT_GLUE_IMPLEMENTATION', |
127 ], | 127 ], |
128 'dependencies': [ | 128 'dependencies': [ |
129 '<(DEPTH)/base/base.gyp:base', | 129 '<(DEPTH)/base/base.gyp:base', |
130 '<(DEPTH)/base/base.gyp:base_i18n', | 130 '<(DEPTH)/base/base.gyp:base_i18n', |
131 '<(DEPTH)/base/base.gyp:base_static', | 131 '<(DEPTH)/base/base.gyp:base_static', |
132 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', | 132 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', |
133 '<(DEPTH)/gpu/gpu.gyp:gles2_c_lib', | 133 '<(DEPTH)/gpu/gpu.gyp:gles2_c_lib', |
134 '<(DEPTH)/gpu/gpu.gyp:gles2_implementation', | 134 '<(DEPTH)/gpu/gpu.gyp:gles2_implementation', |
135 '<(DEPTH)/net/net.gyp:net', | 135 '<(DEPTH)/net/net.gyp:net', |
136 '<(DEPTH)/printing/printing.gyp:printing', | |
137 '<(DEPTH)/skia/skia.gyp:skia', | 136 '<(DEPTH)/skia/skia.gyp:skia', |
138 '<(DEPTH)/third_party/icu/icu.gyp:icui18n', | 137 '<(DEPTH)/third_party/icu/icu.gyp:icui18n', |
139 '<(DEPTH)/third_party/icu/icu.gyp:icuuc', | 138 '<(DEPTH)/third_party/icu/icu.gyp:icuuc', |
140 '<(DEPTH)/third_party/npapi/npapi.gyp:npapi', | 139 '<(DEPTH)/third_party/npapi/npapi.gyp:npapi', |
141 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', | 140 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', |
142 '<(DEPTH)/ui/gl/gl.gyp:gl', | 141 '<(DEPTH)/ui/gl/gl.gyp:gl', |
143 '<(DEPTH)/url/url.gyp:url_lib', | 142 '<(DEPTH)/url/url.gyp:url_lib', |
144 '<(DEPTH)/v8/tools/gyp/v8.gyp:v8', | 143 '<(DEPTH)/v8/tools/gyp/v8.gyp:v8', |
145 '<(DEPTH)/webkit/common/user_agent/webkit_user_agent.gyp:user_agent', | 144 '<(DEPTH)/webkit/common/user_agent/webkit_user_agent.gyp:user_agent', |
146 '<(DEPTH)/webkit/common/webkit_common.gyp:webkit_common', | 145 '<(DEPTH)/webkit/common/webkit_common.gyp:webkit_common', |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
196 '<(DEPTH)/v8/tools/gyp/v8.gyp:v8', | 195 '<(DEPTH)/v8/tools/gyp/v8.gyp:v8', |
197 ], | 196 ], |
198 }], | 197 }], |
199 ], | 198 ], |
200 }], | 199 }], |
201 ['chrome_multiple_dll!=1', { | 200 ['chrome_multiple_dll!=1', { |
202 'dependencies': [ | 201 'dependencies': [ |
203 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink', | 202 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink', |
204 ], | 203 ], |
205 }], | 204 }], |
| 205 ['enable_printing!=0', { |
| 206 'dependencies': [ |
| 207 '<(DEPTH)/printing/printing.gyp:printing', |
| 208 ], |
| 209 }], |
206 ], | 210 ], |
207 }, | 211 }, |
208 ], | 212 ], |
209 'conditions': [ | 213 'conditions': [ |
210 ['use_third_party_translations==1', { | 214 ['use_third_party_translations==1', { |
211 'targets': [ | 215 'targets': [ |
212 { | 216 { |
213 'target_name': 'inspector_strings', | 217 'target_name': 'inspector_strings', |
214 'type': 'none', | 218 'type': 'none', |
215 'variables': { | 219 'variables': { |
(...skipping 20 matching lines...) Expand all Loading... |
236 'variables': { | 240 'variables': { |
237 'jni_gen_package': 'webkit', | 241 'jni_gen_package': 'webkit', |
238 'input_java_class': 'android/widget/OverScroller.class', | 242 'input_java_class': 'android/widget/OverScroller.class', |
239 }, | 243 }, |
240 'includes': [ '../../build/jar_file_jni_generator.gypi' ], | 244 'includes': [ '../../build/jar_file_jni_generator.gypi' ], |
241 }, | 245 }, |
242 ], | 246 ], |
243 }], | 247 }], |
244 ], | 248 ], |
245 } | 249 } |
OLD | NEW |