| 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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 "indexed_db/webidbcursor_impl.cc", | 111 "indexed_db/webidbcursor_impl.cc", |
| 112 "indexed_db/webidbcursor_impl.h", | 112 "indexed_db/webidbcursor_impl.h", |
| 113 "indexed_db/webidbdatabase_impl.cc", | 113 "indexed_db/webidbdatabase_impl.cc", |
| 114 "indexed_db/webidbdatabase_impl.h", | 114 "indexed_db/webidbdatabase_impl.h", |
| 115 "indexed_db/webidbfactory_impl.cc", | 115 "indexed_db/webidbfactory_impl.cc", |
| 116 "indexed_db/webidbfactory_impl.h", | 116 "indexed_db/webidbfactory_impl.h", |
| 117 "memory/child_memory_coordinator_impl.cc", | 117 "memory/child_memory_coordinator_impl.cc", |
| 118 "memory/child_memory_coordinator_impl.h", | 118 "memory/child_memory_coordinator_impl.h", |
| 119 "memory/child_memory_coordinator_impl_android.cc", | 119 "memory/child_memory_coordinator_impl_android.cc", |
| 120 "memory/child_memory_coordinator_impl_android.h", | 120 "memory/child_memory_coordinator_impl_android.h", |
| 121 "memory/child_memory_message_filter.cc", | |
| 122 "memory/child_memory_message_filter.h", | |
| 123 "notifications/notification_data_conversions.cc", | 121 "notifications/notification_data_conversions.cc", |
| 124 "notifications/notification_data_conversions.h", | 122 "notifications/notification_data_conversions.h", |
| 125 "notifications/notification_dispatcher.cc", | 123 "notifications/notification_dispatcher.cc", |
| 126 "notifications/notification_dispatcher.h", | 124 "notifications/notification_dispatcher.h", |
| 127 "notifications/notification_manager.cc", | 125 "notifications/notification_manager.cc", |
| 128 "notifications/notification_manager.h", | 126 "notifications/notification_manager.h", |
| 129 "push_messaging/push_provider.cc", | 127 "push_messaging/push_provider.cc", |
| 130 "push_messaging/push_provider.h", | 128 "push_messaging/push_provider.h", |
| 131 "quota_dispatcher.cc", | 129 "quota_dispatcher.cc", |
| 132 "quota_dispatcher.h", | 130 "quota_dispatcher.h", |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 298 | 296 |
| 299 # See comment at the top of //content/BUILD.gn for how this works. | 297 # See comment at the top of //content/BUILD.gn for how this works. |
| 300 group("for_content_tests") { | 298 group("for_content_tests") { |
| 301 visibility = [ "//content/test/*" ] | 299 visibility = [ "//content/test/*" ] |
| 302 if (!is_component_build) { | 300 if (!is_component_build) { |
| 303 public_deps = [ | 301 public_deps = [ |
| 304 ":child", | 302 ":child", |
| 305 ] | 303 ] |
| 306 } | 304 } |
| 307 } | 305 } |
| OLD | NEW |