OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'dependencies': [ | 6 'dependencies': [ |
7 '../base/base.gyp:base', | 7 '../base/base.gyp:base', |
8 '../components/tracing.gyp:tracing', | 8 '../components/tracing.gyp:tracing', |
9 '../ui/ui.gyp:ui', | 9 '../ui/ui.gyp:ui', |
10 '../url/url.gyp:url_lib', | 10 '../url/url.gyp:url_lib', |
11 ], | 11 ], |
12 'include_dirs': [ | 12 'include_dirs': [ |
13 '..', | 13 '..', |
14 ], | 14 ], |
15 'export_dependent_settings': [ | 15 'export_dependent_settings': [ |
16 '../base/base.gyp:base', | 16 '../base/base.gyp:base', |
17 ], | 17 ], |
18 'sources': [ | 18 'sources': [ |
| 19 'child/android/child_jni_registrar.cc', |
| 20 'child/android/child_jni_registrar.h', |
19 'child/child_histogram_message_filter.cc', | 21 'child/child_histogram_message_filter.cc', |
20 'child/child_histogram_message_filter.h', | 22 'child/child_histogram_message_filter.h', |
21 'child/child_process.cc', | 23 'child/child_process.cc', |
22 'child/child_process.h', | 24 'child/child_process.h', |
23 'child/child_resource_message_filter.cc', | 25 'child/child_resource_message_filter.cc', |
24 'child/child_resource_message_filter.h', | 26 'child/child_resource_message_filter.h', |
25 'child/child_thread.cc', | 27 'child/child_thread.cc', |
26 'child/child_thread.h', | 28 'child/child_thread.h', |
27 'child/database_util.cc', | 29 'child/database_util.cc', |
28 'child/database_util.h', | 30 'child/database_util.h', |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
89 'sources/': [ | 91 'sources/': [ |
90 # iOS only needs a small portion of content; exclude all the | 92 # iOS only needs a small portion of content; exclude all the |
91 # implementation, and re-include what is used. | 93 # implementation, and re-include what is used. |
92 ['exclude', '\\.(cc|mm)$'], | 94 ['exclude', '\\.(cc|mm)$'], |
93 ], | 95 ], |
94 }, { # OS!="ios" | 96 }, { # OS!="ios" |
95 'dependencies': [ | 97 'dependencies': [ |
96 '../third_party/WebKit/public/blink.gyp:blink', | 98 '../third_party/WebKit/public/blink.gyp:blink', |
97 '../third_party/npapi/npapi.gyp:npapi', | 99 '../third_party/npapi/npapi.gyp:npapi', |
98 '../webkit/base/webkit_base.gyp:webkit_base', | 100 '../webkit/base/webkit_base.gyp:webkit_base', |
99 '../webkit/support/webkit_support.gyp:glue', | 101 '../webkit/support/webkit_support.gyp:glue_child', |
100 ], | 102 ], |
101 }], | 103 }], |
102 ], | 104 ], |
103 } | 105 } |
OLD | NEW |