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 | 7 |
8 if (is_component_build) { | 8 if (is_component_build) { |
9 link_target_type = "source_set" | 9 link_target_type = "source_set" |
10 } else { | 10 } else { |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 "indexed_db/indexed_db_key_builders.cc", | 106 "indexed_db/indexed_db_key_builders.cc", |
107 "indexed_db/indexed_db_key_builders.h", | 107 "indexed_db/indexed_db_key_builders.h", |
108 "indexed_db/indexed_db_message_filter.cc", | 108 "indexed_db/indexed_db_message_filter.cc", |
109 "indexed_db/indexed_db_message_filter.h", | 109 "indexed_db/indexed_db_message_filter.h", |
110 "indexed_db/webidbcursor_impl.cc", | 110 "indexed_db/webidbcursor_impl.cc", |
111 "indexed_db/webidbcursor_impl.h", | 111 "indexed_db/webidbcursor_impl.h", |
112 "indexed_db/webidbdatabase_impl.cc", | 112 "indexed_db/webidbdatabase_impl.cc", |
113 "indexed_db/webidbdatabase_impl.h", | 113 "indexed_db/webidbdatabase_impl.h", |
114 "indexed_db/webidbfactory_impl.cc", | 114 "indexed_db/webidbfactory_impl.cc", |
115 "indexed_db/webidbfactory_impl.h", | 115 "indexed_db/webidbfactory_impl.h", |
| 116 "memory/child_memory_coordinator_impl.cc", |
| 117 "memory/child_memory_coordinator_impl.h", |
| 118 "memory/child_memory_coordinator_impl_android.cc", |
| 119 "memory/child_memory_coordinator_impl_android.h", |
116 "memory/child_memory_message_filter.cc", | 120 "memory/child_memory_message_filter.cc", |
117 "memory/child_memory_message_filter.h", | 121 "memory/child_memory_message_filter.h", |
118 "mojo/type_converters.h", | 122 "mojo/type_converters.h", |
119 "notifications/notification_data_conversions.cc", | 123 "notifications/notification_data_conversions.cc", |
120 "notifications/notification_data_conversions.h", | 124 "notifications/notification_data_conversions.h", |
121 "notifications/notification_dispatcher.cc", | 125 "notifications/notification_dispatcher.cc", |
122 "notifications/notification_dispatcher.h", | 126 "notifications/notification_dispatcher.h", |
123 "notifications/notification_manager.cc", | 127 "notifications/notification_manager.cc", |
124 "notifications/notification_manager.h", | 128 "notifications/notification_manager.h", |
125 "power_monitor_broadcast_source.cc", | 129 "power_monitor_broadcast_source.cc", |
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
290 | 294 |
291 # See comment at the top of //content/BUILD.gn for how this works. | 295 # See comment at the top of //content/BUILD.gn for how this works. |
292 group("for_content_tests") { | 296 group("for_content_tests") { |
293 visibility = [ "//content/test/*" ] | 297 visibility = [ "//content/test/*" ] |
294 if (!is_component_build) { | 298 if (!is_component_build) { |
295 public_deps = [ | 299 public_deps = [ |
296 ":child", | 300 ":child", |
297 ] | 301 ] |
298 } | 302 } |
299 } | 303 } |
OLD | NEW |