Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(11)

Side by Side Diff: extensions/renderer/BUILD.gn

Issue 2469593002: [Extensions Bindings] Add Events support (Closed)
Patch Set: asantest Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | extensions/renderer/api_binding.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 6
7 assert(enable_extensions) 7 assert(enable_extensions)
8 8
9 source_set("renderer") { 9 source_set("renderer") {
10 sources = [ 10 sources = [
11 "activity_log_converter_strategy.cc", 11 "activity_log_converter_strategy.cc",
12 "activity_log_converter_strategy.h", 12 "activity_log_converter_strategy.h",
13 "api/automation/automation_api_helper.cc", 13 "api/automation/automation_api_helper.cc",
14 "api/automation/automation_api_helper.h", 14 "api/automation/automation_api_helper.h",
15 "api/display_source/display_source_session.cc", 15 "api/display_source/display_source_session.cc",
16 "api/display_source/display_source_session.h", 16 "api/display_source/display_source_session.h",
17 "api_activity_logger.cc", 17 "api_activity_logger.cc",
18 "api_activity_logger.h", 18 "api_activity_logger.h",
19 "api_binding.cc", 19 "api_binding.cc",
20 "api_binding.h", 20 "api_binding.h",
21 "api_binding_types.h",
21 "api_bindings_system.cc", 22 "api_bindings_system.cc",
22 "api_bindings_system.h", 23 "api_bindings_system.h",
23 "api_definitions_natives.cc", 24 "api_definitions_natives.cc",
24 "api_definitions_natives.h", 25 "api_definitions_natives.h",
26 "api_event_handler.cc",
27 "api_event_handler.h",
25 "api_request_handler.cc", 28 "api_request_handler.cc",
26 "api_request_handler.h", 29 "api_request_handler.h",
27 "app_window_custom_bindings.cc", 30 "app_window_custom_bindings.cc",
28 "app_window_custom_bindings.h", 31 "app_window_custom_bindings.h",
29 "argument_spec.cc", 32 "argument_spec.cc",
30 "argument_spec.h", 33 "argument_spec.h",
31 "binding_generating_native_handler.cc", 34 "binding_generating_native_handler.cc",
32 "binding_generating_native_handler.h", 35 "binding_generating_native_handler.h",
33 "blob_native_handler.cc", 36 "blob_native_handler.cc",
34 "blob_native_handler.h", 37 "blob_native_handler.h",
35 "console.cc", 38 "console.cc",
36 "console.h", 39 "console.h",
37 "content_watcher.cc", 40 "content_watcher.cc",
38 "content_watcher.h", 41 "content_watcher.h",
39 "context_menus_custom_bindings.cc", 42 "context_menus_custom_bindings.cc",
40 "context_menus_custom_bindings.h", 43 "context_menus_custom_bindings.h",
41 "css_native_handler.cc", 44 "css_native_handler.cc",
42 "css_native_handler.h", 45 "css_native_handler.h",
43 "dispatcher.cc", 46 "dispatcher.cc",
44 "dispatcher.h", 47 "dispatcher.h",
45 "dispatcher_delegate.h", 48 "dispatcher_delegate.h",
46 "display_source_custom_bindings.cc", 49 "display_source_custom_bindings.cc",
47 "display_source_custom_bindings.h", 50 "display_source_custom_bindings.h",
48 "document_custom_bindings.cc", 51 "document_custom_bindings.cc",
49 "document_custom_bindings.h", 52 "document_custom_bindings.h",
50 "dom_activity_logger.cc", 53 "dom_activity_logger.cc",
51 "dom_activity_logger.h", 54 "dom_activity_logger.h",
52 "event_bindings.cc", 55 "event_bindings.cc",
53 "event_bindings.h", 56 "event_bindings.h",
57 "event_emitter.cc",
58 "event_emitter.h",
54 "extension_frame_helper.cc", 59 "extension_frame_helper.cc",
55 "extension_frame_helper.h", 60 "extension_frame_helper.h",
56 "extension_groups.h", 61 "extension_groups.h",
57 "extension_helper.cc", 62 "extension_helper.cc",
58 "extension_helper.h", 63 "extension_helper.h",
59 "extension_injection_host.cc", 64 "extension_injection_host.cc",
60 "extension_injection_host.h", 65 "extension_injection_host.h",
61 "extension_port.cc", 66 "extension_port.cc",
62 "extension_port.h", 67 "extension_port.h",
63 "extensions_render_frame_observer.cc", 68 "extensions_render_frame_observer.cc",
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
257 262
258 source_set("unit_tests") { 263 source_set("unit_tests") {
259 testonly = true 264 testonly = true
260 sources = [ 265 sources = [
261 "activity_log_converter_strategy_unittest.cc", 266 "activity_log_converter_strategy_unittest.cc",
262 "api/mojo_private/mojo_private_unittest.cc", 267 "api/mojo_private/mojo_private_unittest.cc",
263 "api_binding_test_util.cc", 268 "api_binding_test_util.cc",
264 "api_binding_test_util.h", 269 "api_binding_test_util.h",
265 "api_binding_unittest.cc", 270 "api_binding_unittest.cc",
266 "api_bindings_system_unittest.cc", 271 "api_bindings_system_unittest.cc",
272 "api_event_handler_unittest.cc",
267 "api_request_handler_unittest.cc", 273 "api_request_handler_unittest.cc",
268 "api_test_base.cc", 274 "api_test_base.cc",
269 "api_test_base.h", 275 "api_test_base.h",
270 "api_test_base_unittest.cc", 276 "api_test_base_unittest.cc",
271 "argument_spec_unittest.cc", 277 "argument_spec_unittest.cc",
272 "event_unittest.cc", 278 "event_unittest.cc",
273 "gc_callback_unittest.cc", 279 "gc_callback_unittest.cc",
274 "json_schema_unittest.cc", 280 "json_schema_unittest.cc",
275 "messaging_utils_unittest.cc", 281 "messaging_utils_unittest.cc",
276 "module_system_test.cc", 282 "module_system_test.cc",
(...skipping 26 matching lines...) Expand all
303 "//ui/base", 309 "//ui/base",
304 ] 310 ]
305 311
306 if (enable_wifi_display && proprietary_codecs) { 312 if (enable_wifi_display && proprietary_codecs) {
307 sources += [ 313 sources += [
308 "api/display_source/wifi_display/wifi_display_elementary_stream_descriptor _unittest.cc", 314 "api/display_source/wifi_display/wifi_display_elementary_stream_descriptor _unittest.cc",
309 "api/display_source/wifi_display/wifi_display_media_packetizer_unittest.cc ", 315 "api/display_source/wifi_display/wifi_display_media_packetizer_unittest.cc ",
310 ] 316 ]
311 } 317 }
312 } 318 }
OLDNEW
« no previous file with comments | « no previous file | extensions/renderer/api_binding.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698