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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 "deferred_start_render_host_observer.h", | 113 "deferred_start_render_host_observer.h", |
114 "error_map.cc", | 114 "error_map.cc", |
115 "error_map.h", | 115 "error_map.h", |
116 "event_listener_map.cc", | 116 "event_listener_map.cc", |
117 "event_listener_map.h", | 117 "event_listener_map.h", |
118 "event_page_tracker.h", | 118 "event_page_tracker.h", |
119 "event_router.cc", | 119 "event_router.cc", |
120 "event_router.h", | 120 "event_router.h", |
121 "event_router_factory.cc", | 121 "event_router_factory.cc", |
122 "event_router_factory.h", | 122 "event_router_factory.h", |
| 123 "events/lazy_event_dispatch_util.cc", |
| 124 "events/lazy_event_dispatch_util.h", |
123 "extension_api_frame_id_map.cc", | 125 "extension_api_frame_id_map.cc", |
124 "extension_api_frame_id_map.h", | 126 "extension_api_frame_id_map.h", |
125 "extension_dialog_auto_confirm.cc", | 127 "extension_dialog_auto_confirm.cc", |
126 "extension_dialog_auto_confirm.h", | 128 "extension_dialog_auto_confirm.h", |
127 "extension_error.cc", | 129 "extension_error.cc", |
128 "extension_error.h", | 130 "extension_error.h", |
129 "extension_function.cc", | 131 "extension_function.cc", |
130 "extension_function.h", | 132 "extension_function.h", |
131 "extension_function_dispatcher.cc", | 133 "extension_function_dispatcher.cc", |
132 "extension_function_dispatcher.h", | 134 "extension_function_dispatcher.h", |
(...skipping 377 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
510 | 512 |
511 if (is_chromeos) { | 513 if (is_chromeos) { |
512 sources += [ | 514 sources += [ |
513 "api/audio/audio_device_id_calculator_unittest.cc", | 515 "api/audio/audio_device_id_calculator_unittest.cc", |
514 "api/webcam_private/visca_webcam_unittest.cc", | 516 "api/webcam_private/visca_webcam_unittest.cc", |
515 ] | 517 ] |
516 | 518 |
517 deps += [ "//chromeos:test_support" ] | 519 deps += [ "//chromeos:test_support" ] |
518 } | 520 } |
519 } | 521 } |
OLD | NEW |