| 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("//third_party/WebKit/public/public_features.gni") | 7 import("//third_party/WebKit/public/public_features.gni") |
| 8 | 8 |
| 9 if (is_component_build) { | 9 if (is_component_build) { |
| 10 link_target_type = "source_set" | 10 link_target_type = "source_set" |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 "image_decoder.cc", | 99 "image_decoder.cc", |
| 100 "image_decoder.h", | 100 "image_decoder.h", |
| 101 "indexed_db/indexed_db_callbacks_impl.cc", | 101 "indexed_db/indexed_db_callbacks_impl.cc", |
| 102 "indexed_db/indexed_db_callbacks_impl.h", | 102 "indexed_db/indexed_db_callbacks_impl.h", |
| 103 "indexed_db/indexed_db_database_callbacks_impl.cc", | 103 "indexed_db/indexed_db_database_callbacks_impl.cc", |
| 104 "indexed_db/indexed_db_database_callbacks_impl.h", | 104 "indexed_db/indexed_db_database_callbacks_impl.h", |
| 105 "indexed_db/indexed_db_dispatcher.cc", | 105 "indexed_db/indexed_db_dispatcher.cc", |
| 106 "indexed_db/indexed_db_dispatcher.h", | 106 "indexed_db/indexed_db_dispatcher.h", |
| 107 "indexed_db/indexed_db_key_builders.cc", | 107 "indexed_db/indexed_db_key_builders.cc", |
| 108 "indexed_db/indexed_db_key_builders.h", | 108 "indexed_db/indexed_db_key_builders.h", |
| 109 "indexed_db/indexed_db_message_filter.cc", | |
| 110 "indexed_db/indexed_db_message_filter.h", | |
| 111 "indexed_db/webidbcursor_impl.cc", | 109 "indexed_db/webidbcursor_impl.cc", |
| 112 "indexed_db/webidbcursor_impl.h", | 110 "indexed_db/webidbcursor_impl.h", |
| 113 "indexed_db/webidbdatabase_impl.cc", | 111 "indexed_db/webidbdatabase_impl.cc", |
| 114 "indexed_db/webidbdatabase_impl.h", | 112 "indexed_db/webidbdatabase_impl.h", |
| 115 "indexed_db/webidbfactory_impl.cc", | 113 "indexed_db/webidbfactory_impl.cc", |
| 116 "indexed_db/webidbfactory_impl.h", | 114 "indexed_db/webidbfactory_impl.h", |
| 117 "memory/child_memory_coordinator_impl.cc", | 115 "memory/child_memory_coordinator_impl.cc", |
| 118 "memory/child_memory_coordinator_impl.h", | 116 "memory/child_memory_coordinator_impl.h", |
| 119 "memory/child_memory_coordinator_impl_android.cc", | 117 "memory/child_memory_coordinator_impl_android.cc", |
| 120 "memory/child_memory_coordinator_impl_android.h", | 118 "memory/child_memory_coordinator_impl_android.h", |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 292 | 290 |
| 293 # See comment at the top of //content/BUILD.gn for how this works. | 291 # See comment at the top of //content/BUILD.gn for how this works. |
| 294 group("for_content_tests") { | 292 group("for_content_tests") { |
| 295 visibility = [ "//content/test/*" ] | 293 visibility = [ "//content/test/*" ] |
| 296 if (!is_component_build) { | 294 if (!is_component_build) { |
| 297 public_deps = [ | 295 public_deps = [ |
| 298 ":child", | 296 ":child", |
| 299 ] | 297 ] |
| 300 } | 298 } |
| 301 } | 299 } |
| OLD | NEW |