| 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'], |
| 11 }, | 11 }, |
| 12 'variables': { |
| 13 'chromium_code': 1, |
| 14 }, |
| 12 'targets': [ | 15 'targets': [ |
| 13 { | 16 { |
| 14 'target_name': 'glue_child', | 17 'target_name': 'glue_child', |
| 15 'type': '<(component)', | 18 'type': '<(component)', |
| 16 'variables': { 'enable_wexit_time_destructors': 1, }, | 19 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 17 'defines': [ | 20 'defines': [ |
| 18 'WEBKIT_CHILD_IMPLEMENTATION', | 21 'WEBKIT_CHILD_IMPLEMENTATION', |
| 19 ], | 22 ], |
| 20 'dependencies': [ | 23 'dependencies': [ |
| 21 '<(DEPTH)/base/base.gyp:base', | 24 '<(DEPTH)/base/base.gyp:base', |
| (...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 233 'variables': { | 236 'variables': { |
| 234 'jni_gen_package': 'webkit', | 237 'jni_gen_package': 'webkit', |
| 235 'input_java_class': 'android/widget/OverScroller.class', | 238 'input_java_class': 'android/widget/OverScroller.class', |
| 236 }, | 239 }, |
| 237 'includes': [ '../../build/jar_file_jni_generator.gypi' ], | 240 'includes': [ '../../build/jar_file_jni_generator.gypi' ], |
| 238 }, | 241 }, |
| 239 ], | 242 ], |
| 240 }], | 243 }], |
| 241 ], | 244 ], |
| 242 } | 245 } |
| OLD | NEW |