| 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 21 matching lines...) Expand all Loading... |
| 32 sources = [ | 32 sources = [ |
| 33 "appcache/appcache_backend_proxy.cc", | 33 "appcache/appcache_backend_proxy.cc", |
| 34 "appcache/appcache_backend_proxy.h", | 34 "appcache/appcache_backend_proxy.h", |
| 35 "appcache/appcache_dispatcher.cc", | 35 "appcache/appcache_dispatcher.cc", |
| 36 "appcache/appcache_dispatcher.h", | 36 "appcache/appcache_dispatcher.h", |
| 37 "appcache/appcache_frontend_impl.cc", | 37 "appcache/appcache_frontend_impl.cc", |
| 38 "appcache/appcache_frontend_impl.h", | 38 "appcache/appcache_frontend_impl.h", |
| 39 "appcache/web_application_cache_host_impl.cc", | 39 "appcache/web_application_cache_host_impl.cc", |
| 40 "appcache/web_application_cache_host_impl.h", | 40 "appcache/web_application_cache_host_impl.h", |
| 41 "assert_matching_enums.cc", | 41 "assert_matching_enums.cc", |
| 42 "background_sync/background_sync_provider.cc", | |
| 43 "background_sync/background_sync_provider.h", | |
| 44 "background_sync/background_sync_type_converters.cc", | 42 "background_sync/background_sync_type_converters.cc", |
| 45 "background_sync/background_sync_type_converters.h", | 43 "background_sync/background_sync_type_converters.h", |
| 46 "blink_platform_impl.cc", | 44 "blink_platform_impl.cc", |
| 47 "blink_platform_impl.h", | 45 "blink_platform_impl.h", |
| 48 "blob_storage/blob_consolidation.cc", | 46 "blob_storage/blob_consolidation.cc", |
| 49 "blob_storage/blob_consolidation.h", | 47 "blob_storage/blob_consolidation.h", |
| 50 "blob_storage/blob_message_filter.cc", | 48 "blob_storage/blob_message_filter.cc", |
| 51 "blob_storage/blob_message_filter.h", | 49 "blob_storage/blob_message_filter.h", |
| 52 "blob_storage/blob_transport_controller.cc", | 50 "blob_storage/blob_transport_controller.cc", |
| 53 "blob_storage/blob_transport_controller.h", | 51 "blob_storage/blob_transport_controller.h", |
| (...skipping 238 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 |