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 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
196 { | 196 { |
197 'target_name': 'glue_renderer', | 197 'target_name': 'glue_renderer', |
198 'type': '<(component)', | 198 'type': '<(component)', |
199 'variables': { 'enable_wexit_time_destructors': 1, }, | 199 'variables': { 'enable_wexit_time_destructors': 1, }, |
200 'defines': [ | 200 'defines': [ |
201 'WEBKIT_RENDERER_IMPLEMENTATION', | 201 'WEBKIT_RENDERER_IMPLEMENTATION', |
202 ], | 202 ], |
203 'dependencies': [ | 203 'dependencies': [ |
204 '<(DEPTH)/base/base.gyp:base', | 204 '<(DEPTH)/base/base.gyp:base', |
205 '<(DEPTH)/base/base.gyp:base_i18n', | 205 '<(DEPTH)/base/base.gyp:base_i18n', |
206 '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl', | |
207 '<(DEPTH)/net/net.gyp:net', | 206 '<(DEPTH)/net/net.gyp:net', |
208 '<(DEPTH)/skia/skia.gyp:skia', | 207 '<(DEPTH)/skia/skia.gyp:skia', |
209 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink', | 208 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink', |
210 '<(DEPTH)/third_party/icu/icu.gyp:icuuc', | 209 '<(DEPTH)/third_party/icu/icu.gyp:icuuc', |
211 '<(DEPTH)/ui/ui.gyp:ui', | 210 '<(DEPTH)/ui/ui.gyp:ui', |
| 211 '<(DEPTH)/url/url.gyp:url_lib', |
212 'glue_common', | 212 'glue_common', |
213 'webkit_common', | 213 'webkit_common', |
214 ], | 214 ], |
215 | 215 |
216 'sources': [ | 216 'sources': [ |
217 '../renderer/cpp_bound_class.cc', | 217 '../renderer/cpp_bound_class.cc', |
218 '../renderer/cpp_bound_class.h', | 218 '../renderer/cpp_bound_class.h', |
219 '../renderer/cpp_variant.cc', | 219 '../renderer/cpp_variant.cc', |
220 '../renderer/cpp_variant.h', | 220 '../renderer/cpp_variant.h', |
221 '../renderer/clipboard_utils.cc', | 221 '../renderer/clipboard_utils.cc', |
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
369 'variables': { | 369 'variables': { |
370 'jni_gen_package': 'webkit', | 370 'jni_gen_package': 'webkit', |
371 'input_java_class': 'android/widget/OverScroller.class', | 371 'input_java_class': 'android/widget/OverScroller.class', |
372 }, | 372 }, |
373 'includes': [ '../../build/jar_file_jni_generator.gypi' ], | 373 'includes': [ '../../build/jar_file_jni_generator.gypi' ], |
374 }, | 374 }, |
375 ], | 375 ], |
376 }], | 376 }], |
377 ], | 377 ], |
378 } | 378 } |
OLD | NEW |