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("//extensions/features/features.gni") | 6 import("//extensions/features/features.gni") |
7 | 7 |
8 group("browser") { | 8 group("browser") { |
9 public_deps = [ | 9 public_deps = [ |
10 "//extensions/browser:browser_context_keyed_service_factories", | 10 "//extensions/browser:browser_context_keyed_service_factories", |
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
239 "process_manager_factory.h", | 239 "process_manager_factory.h", |
240 "process_manager_observer.h", | 240 "process_manager_observer.h", |
241 "process_map.cc", | 241 "process_map.cc", |
242 "process_map.h", | 242 "process_map.h", |
243 "process_map_factory.cc", | 243 "process_map_factory.cc", |
244 "process_map_factory.h", | 244 "process_map_factory.h", |
245 "quota_service.cc", | 245 "quota_service.cc", |
246 "quota_service.h", | 246 "quota_service.h", |
247 "renderer_startup_helper.cc", | 247 "renderer_startup_helper.cc", |
248 "renderer_startup_helper.h", | 248 "renderer_startup_helper.h", |
| 249 "requirements_checker.cc", |
249 "requirements_checker.h", | 250 "requirements_checker.h", |
250 "runtime_data.cc", | 251 "runtime_data.cc", |
251 "runtime_data.h", | 252 "runtime_data.h", |
252 "sandboxed_unpacker.cc", | 253 "sandboxed_unpacker.cc", |
253 "sandboxed_unpacker.h", | 254 "sandboxed_unpacker.h", |
254 "script_execution_observer.h", | 255 "script_execution_observer.h", |
255 "script_executor.cc", | 256 "script_executor.cc", |
256 "script_executor.h", | 257 "script_executor.h", |
257 "serial_extension_host_queue.cc", | 258 "serial_extension_host_queue.cc", |
258 "serial_extension_host_queue.h", | 259 "serial_extension_host_queue.h", |
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
490 "//net:test_support", | 491 "//net:test_support", |
491 "//third_party/leveldatabase", | 492 "//third_party/leveldatabase", |
492 "//third_party/zlib:zip", | 493 "//third_party/zlib:zip", |
493 ] | 494 ] |
494 | 495 |
495 if (is_chromeos) { | 496 if (is_chromeos) { |
496 sources += [ "api/webcam_private/visca_webcam_unittest.cc" ] | 497 sources += [ "api/webcam_private/visca_webcam_unittest.cc" ] |
497 deps += [ "//chromeos:test_support" ] | 498 deps += [ "//chromeos:test_support" ] |
498 } | 499 } |
499 } | 500 } |
OLD | NEW |