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 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 140 'msvs_disabled_warnings': [ 4800, 4267 ], | 140 'msvs_disabled_warnings': [ 4800, 4267 ], |
| 141 'sources/': [['exclude', '_posix\\.cc$']], | 141 'sources/': [['exclude', '_posix\\.cc$']], |
| 142 'include_dirs': [ | 142 'include_dirs': [ |
| 143 '<(DEPTH)/third_party/wtl/include', | 143 '<(DEPTH)/third_party/wtl/include', |
| 144 ], | 144 ], |
| 145 }], | 145 }], |
| 146 ], | 146 ], |
| 147 }, | 147 }, |
| 148 | 148 |
| 149 { | 149 { |
| 150 'target_name': 'glue_renderer', | |
| 151 'type': '<(component)', | |
| 152 'variables': { 'enable_wexit_time_destructors': 1, }, | |
| 153 'defines': [ | |
| 154 'WEBKIT_EXTENSIONS_IMPLEMENTATION', | |
| 155 'WEBKIT_GLUE_IMPLEMENTATION', | |
| 156 ], | |
| 157 'dependencies': [ | |
| 158 '<(DEPTH)/base/base.gyp:base_i18n', | |
| 159 '<(DEPTH)/base/base.gyp:base', | |
| 160 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations', | |
| 161 '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl', | |
| 162 '<(DEPTH)/net/net.gyp:net', | |
| 163 '<(DEPTH)/skia/skia.gyp:skia', | |
| 164 '<(DEPTH)/third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit', | |
| 165 '<(DEPTH)/ui/ui.gyp:ui', | |
| 166 '<(DEPTH)/ui/ui.gyp:ui_resources', | |
|
jamesr
2013/05/29 23:42:44
i don't think the cpp_binding stuff needs ui, skia
| |
| 167 'glue_common', | |
| 168 ], | |
| 169 | |
| 170 'include_dirs': [ | |
| 171 '<(INTERMEDIATE_DIR)', | |
| 172 '<(SHARED_INTERMEDIATE_DIR)/webkit', | |
| 173 '<(SHARED_INTERMEDIATE_DIR)/ui', | |
|
jamesr
2013/05/29 23:42:44
do you need this for any files in here?
| |
| 174 ], | |
| 175 | |
| 176 'sources': [ | |
| 177 '../renderer/cpp_bound_class.cc', | |
| 178 '../renderer/cpp_bound_class.h', | |
| 179 '../renderer/cpp_variant.cc', | |
| 180 '../renderer/cpp_variant.h', | |
| 181 ], | |
| 182 }, | |
| 183 | |
| 184 { | |
| 150 'target_name': 'glue', | 185 'target_name': 'glue', |
| 151 'type': '<(component)', | 186 'type': '<(component)', |
| 152 'variables': { 'enable_wexit_time_destructors': 1, }, | 187 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 153 'defines': [ | 188 'defines': [ |
| 154 'WEBKIT_EXTENSIONS_IMPLEMENTATION', | 189 'WEBKIT_EXTENSIONS_IMPLEMENTATION', |
| 155 'WEBKIT_GLUE_IMPLEMENTATION', | 190 'WEBKIT_GLUE_IMPLEMENTATION', |
| 156 ], | 191 ], |
| 157 'dependencies': [ | 192 'dependencies': [ |
| 158 '<(DEPTH)/base/base.gyp:base_i18n', | 193 '<(DEPTH)/base/base.gyp:base_i18n', |
| 159 '<(DEPTH)/base/base.gyp:base_static', | 194 '<(DEPTH)/base/base.gyp:base_static', |
| (...skipping 23 matching lines...) Expand all Loading... | |
| 183 'webkit_resources', | 218 'webkit_resources', |
| 184 'webkit_storage', | 219 'webkit_storage', |
| 185 'webkit_strings', | 220 'webkit_strings', |
| 186 ], | 221 ], |
| 187 'include_dirs': [ | 222 'include_dirs': [ |
| 188 '<(INTERMEDIATE_DIR)', | 223 '<(INTERMEDIATE_DIR)', |
| 189 '<(SHARED_INTERMEDIATE_DIR)/webkit', | 224 '<(SHARED_INTERMEDIATE_DIR)/webkit', |
| 190 '<(SHARED_INTERMEDIATE_DIR)/ui', | 225 '<(SHARED_INTERMEDIATE_DIR)/ui', |
| 191 ], | 226 ], |
| 192 'sources': [ | 227 'sources': [ |
| 193 'cpp_bound_class.cc', | |
| 194 'cpp_bound_class.h', | |
| 195 'cpp_variant.cc', | |
| 196 'cpp_variant.h', | |
| 197 'cursor_utils.cc', | 228 'cursor_utils.cc', |
| 198 'cursor_utils.h', | 229 'cursor_utils.h', |
| 199 'fling_curve_configuration.cc', | 230 'fling_curve_configuration.cc', |
| 200 'fling_curve_configuration.h', | 231 'fling_curve_configuration.h', |
| 201 'fling_animator_impl_android.cc', | 232 'fling_animator_impl_android.cc', |
| 202 'fling_animator_impl_android.h', | 233 'fling_animator_impl_android.h', |
| 203 'ftp_directory_listing_response_delegate.cc', | 234 'ftp_directory_listing_response_delegate.cc', |
| 204 'ftp_directory_listing_response_delegate.h', | 235 'ftp_directory_listing_response_delegate.h', |
| 205 'glue_serialize_deprecated.cc', | 236 'glue_serialize_deprecated.cc', |
| 206 'glue_serialize_deprecated.h', | 237 'glue_serialize_deprecated.h', |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 370 'variables': { | 401 'variables': { |
| 371 'jni_gen_package': 'webkit', | 402 'jni_gen_package': 'webkit', |
| 372 'input_java_class': 'android/widget/OverScroller.class', | 403 'input_java_class': 'android/widget/OverScroller.class', |
| 373 }, | 404 }, |
| 374 'includes': [ '../../build/jar_file_jni_generator.gypi' ], | 405 'includes': [ '../../build/jar_file_jni_generator.gypi' ], |
| 375 }, | 406 }, |
| 376 ], | 407 ], |
| 377 }], | 408 }], |
| 378 ], | 409 ], |
| 379 } | 410 } |
| OLD | NEW |