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 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
7 import("//ppapi/features/features.gni") | 7 import("//ppapi/features/features.gni") |
8 import("//third_party/WebKit/public/public_features.gni") | 8 import("//third_party/WebKit/public/public_features.gni") |
9 | 9 |
10 if (is_component_build) { | 10 if (is_component_build) { |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 "indexed_db/webidbdatabase_impl.cc", | 110 "indexed_db/webidbdatabase_impl.cc", |
111 "indexed_db/webidbdatabase_impl.h", | 111 "indexed_db/webidbdatabase_impl.h", |
112 "indexed_db/webidbfactory_impl.cc", | 112 "indexed_db/webidbfactory_impl.cc", |
113 "indexed_db/webidbfactory_impl.h", | 113 "indexed_db/webidbfactory_impl.h", |
114 "memory/child_memory_coordinator_impl.cc", | 114 "memory/child_memory_coordinator_impl.cc", |
115 "memory/child_memory_coordinator_impl.h", | 115 "memory/child_memory_coordinator_impl.h", |
116 "memory/child_memory_coordinator_impl_android.cc", | 116 "memory/child_memory_coordinator_impl_android.cc", |
117 "memory/child_memory_coordinator_impl_android.h", | 117 "memory/child_memory_coordinator_impl_android.h", |
118 "memory/child_memory_message_filter.cc", | 118 "memory/child_memory_message_filter.cc", |
119 "memory/child_memory_message_filter.h", | 119 "memory/child_memory_message_filter.h", |
120 "mojo/type_converters.h", | |
121 "notifications/notification_data_conversions.cc", | 120 "notifications/notification_data_conversions.cc", |
122 "notifications/notification_data_conversions.h", | 121 "notifications/notification_data_conversions.h", |
123 "notifications/notification_dispatcher.cc", | 122 "notifications/notification_dispatcher.cc", |
124 "notifications/notification_dispatcher.h", | 123 "notifications/notification_dispatcher.h", |
125 "notifications/notification_manager.cc", | 124 "notifications/notification_manager.cc", |
126 "notifications/notification_manager.h", | 125 "notifications/notification_manager.h", |
127 "push_messaging/push_dispatcher.cc", | 126 "push_messaging/push_dispatcher.cc", |
128 "push_messaging/push_dispatcher.h", | 127 "push_messaging/push_dispatcher.h", |
129 "push_messaging/push_provider.cc", | 128 "push_messaging/push_provider.cc", |
130 "push_messaging/push_provider.h", | 129 "push_messaging/push_provider.h", |
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
293 | 292 |
294 # See comment at the top of //content/BUILD.gn for how this works. | 293 # See comment at the top of //content/BUILD.gn for how this works. |
295 group("for_content_tests") { | 294 group("for_content_tests") { |
296 visibility = [ "//content/test/*" ] | 295 visibility = [ "//content/test/*" ] |
297 if (!is_component_build) { | 296 if (!is_component_build) { |
298 public_deps = [ | 297 public_deps = [ |
299 ":child", | 298 ":child", |
300 ] | 299 ] |
301 } | 300 } |
302 } | 301 } |
OLD | NEW |