Chromium Code Reviews| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 49 'variables': { | 49 'variables': { |
| 50 'grit_grd_file': 'webkit_strings.grd', | 50 'grit_grd_file': 'webkit_strings.grd', |
| 51 }, | 51 }, |
| 52 'includes': [ '../../build/grit_action.gypi' ], | 52 'includes': [ '../../build/grit_action.gypi' ], |
| 53 }, | 53 }, |
| 54 ], | 54 ], |
| 55 'includes': [ '../../build/grit_target.gypi' ], | 55 'includes': [ '../../build/grit_target.gypi' ], |
| 56 }, | 56 }, |
| 57 | 57 |
| 58 { | 58 { |
| 59 'target_name': 'glue_child', | |
| 60 'type': '<(component)', | |
| 61 'variables': { 'enable_wexit_time_destructors': 1, }, | |
| 62 'defines': [ | |
| 63 'WEBKIT_CHILD_IMPLEMENTATION', | |
| 64 ], | |
| 65 'dependencies': [ | |
|
jamesr
2013/06/12 03:56:44
could we start minimal and add deps as we add thin
scottmg
2013/06/12 04:09:54
Done.
| |
| 66 '<(DEPTH)/base/base.gyp:base', | |
| 67 '<(DEPTH)/base/base.gyp:base_i18n', | |
| 68 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations', | |
| 69 '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl', | |
| 70 '<(DEPTH)/net/net.gyp:net', | |
| 71 '<(DEPTH)/third_party/icu/icu.gyp:icuuc', | |
| 72 '<(DEPTH)/third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', | |
| 73 '<(DEPTH)/webkit/base/webkit_base.gyp:webkit_base', | |
| 74 'glue_common', | |
| 75 | |
| 76 # TODO(scottmg): crbug.com/237249 | |
| 77 'glue', | |
| 78 ], | |
| 79 | |
| 80 'sources': [ | |
| 81 '../child/webkitplatformsupport_child_impl.cc', | |
| 82 '../child/webkitplatformsupport_child_impl.h', | |
| 83 ], | |
| 84 }, | |
| 85 | |
| 86 { | |
| 59 'target_name': 'glue_common', | 87 'target_name': 'glue_common', |
| 60 'type': '<(component)', | 88 'type': '<(component)', |
| 61 'variables': { 'enable_wexit_time_destructors': 1, }, | 89 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 62 'defines': [ | 90 'defines': [ |
| 63 'WEBKIT_COMMON_IMPLEMENTATION', | 91 'WEBKIT_COMMON_IMPLEMENTATION', |
| 64 ], | 92 ], |
| 65 'dependencies': [ | 93 'dependencies': [ |
| 66 '<(DEPTH)/base/base.gyp:base', | 94 '<(DEPTH)/base/base.gyp:base', |
| 67 '<(DEPTH)/base/base.gyp:base_i18n', | 95 '<(DEPTH)/base/base.gyp:base_i18n', |
| 68 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations', | 96 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations', |
| (...skipping 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 359 'variables': { | 387 'variables': { |
| 360 'jni_gen_package': 'webkit', | 388 'jni_gen_package': 'webkit', |
| 361 'input_java_class': 'android/widget/OverScroller.class', | 389 'input_java_class': 'android/widget/OverScroller.class', |
| 362 }, | 390 }, |
| 363 'includes': [ '../../build/jar_file_jni_generator.gypi' ], | 391 'includes': [ '../../build/jar_file_jni_generator.gypi' ], |
| 364 }, | 392 }, |
| 365 ], | 393 ], |
| 366 }], | 394 }], |
| 367 ], | 395 ], |
| 368 } | 396 } |
| OLD | NEW |