| 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 23 matching lines...) Expand all Loading... |
| 34 sources = [ | 34 sources = [ |
| 35 "appcache/appcache_backend_proxy.cc", | 35 "appcache/appcache_backend_proxy.cc", |
| 36 "appcache/appcache_backend_proxy.h", | 36 "appcache/appcache_backend_proxy.h", |
| 37 "appcache/appcache_dispatcher.cc", | 37 "appcache/appcache_dispatcher.cc", |
| 38 "appcache/appcache_dispatcher.h", | 38 "appcache/appcache_dispatcher.h", |
| 39 "appcache/appcache_frontend_impl.cc", | 39 "appcache/appcache_frontend_impl.cc", |
| 40 "appcache/appcache_frontend_impl.h", | 40 "appcache/appcache_frontend_impl.h", |
| 41 "appcache/web_application_cache_host_impl.cc", | 41 "appcache/web_application_cache_host_impl.cc", |
| 42 "appcache/web_application_cache_host_impl.h", | 42 "appcache/web_application_cache_host_impl.h", |
| 43 "assert_matching_enums.cc", | 43 "assert_matching_enums.cc", |
| 44 "background_sync/background_sync_type_converters.cc", | |
| 45 "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", |
| 54 "blob_storage/webblobregistry_impl.cc", | 52 "blob_storage/webblobregistry_impl.cc", |
| 55 "blob_storage/webblobregistry_impl.h", | 53 "blob_storage/webblobregistry_impl.h", |
| (...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 293 | 291 |
| 294 # See comment at the top of //content/BUILD.gn for how this works. | 292 # See comment at the top of //content/BUILD.gn for how this works. |
| 295 group("for_content_tests") { | 293 group("for_content_tests") { |
| 296 visibility = [ "//content/test/*" ] | 294 visibility = [ "//content/test/*" ] |
| 297 if (!is_component_build) { | 295 if (!is_component_build) { |
| 298 public_deps = [ | 296 public_deps = [ |
| 299 ":child", | 297 ":child", |
| 300 ] | 298 ] |
| 301 } | 299 } |
| 302 } | 300 } |
| OLD | NEW |