| 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 "child_histogram_message_filter.h", | 59 "child_histogram_message_filter.h", |
| 60 "child_message_filter.cc", | 60 "child_message_filter.cc", |
| 61 "child_message_filter.h", | 61 "child_message_filter.h", |
| 62 "child_process.cc", | 62 "child_process.cc", |
| 63 "child_process.h", | 63 "child_process.h", |
| 64 "child_process_sandbox_support_impl_linux.cc", | 64 "child_process_sandbox_support_impl_linux.cc", |
| 65 "child_process_sandbox_support_impl_linux.h", | 65 "child_process_sandbox_support_impl_linux.h", |
| 66 "child_process_sandbox_support_impl_shm_linux.cc", | 66 "child_process_sandbox_support_impl_shm_linux.cc", |
| 67 "child_resource_message_filter.cc", | 67 "child_resource_message_filter.cc", |
| 68 "child_resource_message_filter.h", | 68 "child_resource_message_filter.h", |
| 69 "child_shared_bitmap_manager.cc", | |
| 70 "child_shared_bitmap_manager.h", | |
| 71 "child_thread_impl.cc", | 69 "child_thread_impl.cc", |
| 72 "child_thread_impl.h", | 70 "child_thread_impl.h", |
| 73 "content_child_helpers.cc", | 71 "content_child_helpers.cc", |
| 74 "content_child_helpers.h", | 72 "content_child_helpers.h", |
| 75 "database_util.cc", | 73 "database_util.cc", |
| 76 "database_util.h", | 74 "database_util.h", |
| 77 "db_message_filter.cc", | 75 "db_message_filter.cc", |
| 78 "db_message_filter.h", | 76 "db_message_filter.h", |
| 79 "dwrite_font_proxy/dwrite_font_proxy_init_win.cc", | 77 "dwrite_font_proxy/dwrite_font_proxy_init_win.cc", |
| 80 "dwrite_font_proxy/dwrite_font_proxy_init_win.h", | 78 "dwrite_font_proxy/dwrite_font_proxy_init_win.h", |
| (...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 299 | 297 |
| 300 # See comment at the top of //content/BUILD.gn for how this works. | 298 # See comment at the top of //content/BUILD.gn for how this works. |
| 301 group("for_content_tests") { | 299 group("for_content_tests") { |
| 302 visibility = [ "//content/test/*" ] | 300 visibility = [ "//content/test/*" ] |
| 303 if (!is_component_build) { | 301 if (!is_component_build) { |
| 304 public_deps = [ | 302 public_deps = [ |
| 305 ":child", | 303 ":child", |
| 306 ] | 304 ] |
| 307 } | 305 } |
| 308 } | 306 } |
| OLD | NEW |