OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 component("child") { | 5 component("child") { |
6 output_name = "webkit_child" | 6 output_name = "webkit_child" |
7 sources = [ | 7 sources = [ |
8 "resource_loader_bridge.cc", | 8 "resource_loader_bridge.cc", |
9 "resource_loader_bridge.h", | 9 "resource_loader_bridge.h", |
10 "webkit_child_export.h", | 10 "webkit_child_export.h", |
11 "weburlresponse_extradata_impl.cc", | |
12 "weburlresponse_extradata_impl.h", | |
13 ] | 11 ] |
14 | 12 |
15 defines = [ "WEBKIT_CHILD_IMPLEMENTATION" ] | 13 defines = [ "WEBKIT_CHILD_IMPLEMENTATION" ] |
16 include_dirs = [ | 14 include_dirs = [ |
17 # For JNI generated header. | 15 # For JNI generated header. |
18 "$root_gen_dir/webkit", | 16 "$root_gen_dir/webkit", |
19 ] | 17 ] |
20 | 18 |
21 configs += [ "//build/config/compiler:wexit_time_destructors" ] | 19 configs += [ "//build/config/compiler:wexit_time_destructors" ] |
22 if (is_win) { | 20 if (is_win) { |
(...skipping 26 matching lines...) Expand all Loading... |
49 | 47 |
50 #TODO(GYP) | 48 #TODO(GYP) |
51 #'target_name': 'overscroller_jni_headers', | 49 #'target_name': 'overscroller_jni_headers', |
52 #'type': 'none', | 50 #'type': 'none', |
53 #'variables': { | 51 #'variables': { |
54 # 'jni_gen_package': 'webkit', | 52 # 'jni_gen_package': 'webkit', |
55 # 'input_java_class': 'android/widget/OverScroller.class', | 53 # 'input_java_class': 'android/widget/OverScroller.class', |
56 #}, | 54 #}, |
57 #'includes': [ '../../build/jar_file_jni_generator.gypi' ], | 55 #'includes': [ '../../build/jar_file_jni_generator.gypi' ], |
58 | 56 |
OLD | NEW |