| 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/chromecast_build.gni") | 5 import("//build/config/chromecast_build.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//build/split_static_library.gni") | 8 import("//build/split_static_library.gni") |
| 9 import("//content/common/features.gni") | 9 import("//content/common/features.gni") |
| 10 import("//media/media_options.gni") | 10 import("//media/media_options.gni") |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 "image_downloader/image_downloader_impl.cc", | 150 "image_downloader/image_downloader_impl.cc", |
| 151 "image_downloader/image_downloader_impl.h", | 151 "image_downloader/image_downloader_impl.h", |
| 152 "image_downloader/single_image_downloader.cc", | 152 "image_downloader/single_image_downloader.cc", |
| 153 "image_downloader/single_image_downloader.h", | 153 "image_downloader/single_image_downloader.h", |
| 154 "ime_event_guard.cc", | 154 "ime_event_guard.cc", |
| 155 "ime_event_guard.h", | 155 "ime_event_guard.h", |
| 156 "in_process_renderer_thread.cc", | 156 "in_process_renderer_thread.cc", |
| 157 "in_process_renderer_thread.h", | 157 "in_process_renderer_thread.h", |
| 158 "input/frame_input_handler_impl.cc", | 158 "input/frame_input_handler_impl.cc", |
| 159 "input/frame_input_handler_impl.h", | 159 "input/frame_input_handler_impl.h", |
| 160 "input/frame_input_hit_test_impl.cc", |
| 161 "input/frame_input_hit_test_impl.h", |
| 160 "input/input_event_filter.cc", | 162 "input/input_event_filter.cc", |
| 161 "input/input_event_filter.h", | 163 "input/input_event_filter.h", |
| 162 "input/input_handler_manager.cc", | 164 "input/input_handler_manager.cc", |
| 163 "input/input_handler_manager.h", | 165 "input/input_handler_manager.h", |
| 164 "input/input_handler_manager_client.h", | 166 "input/input_handler_manager_client.h", |
| 165 "input/input_handler_wrapper.cc", | 167 "input/input_handler_wrapper.cc", |
| 166 "input/input_handler_wrapper.h", | 168 "input/input_handler_wrapper.h", |
| 167 "input/main_thread_event_queue.cc", | 169 "input/main_thread_event_queue.cc", |
| 168 "input/main_thread_event_queue.h", | 170 "input/main_thread_event_queue.h", |
| 169 "input/main_thread_event_queue_task.h", | 171 "input/main_thread_event_queue_task.h", |
| (...skipping 825 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 995 # See comment at the top of //content/BUILD.gn for how this works. | 997 # See comment at the top of //content/BUILD.gn for how this works. |
| 996 group("for_content_tests") { | 998 group("for_content_tests") { |
| 997 visibility = [ "//content/test/*" ] | 999 visibility = [ "//content/test/*" ] |
| 998 | 1000 |
| 999 if (!is_component_build) { | 1001 if (!is_component_build) { |
| 1000 public_deps = [ | 1002 public_deps = [ |
| 1001 ":renderer", | 1003 ":renderer", |
| 1002 ] | 1004 ] |
| 1003 } | 1005 } |
| 1004 } | 1006 } |
| OLD | NEW |