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

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

Issue 2438623002: [Extensions Bindings] Add APIBindingsSystem (Closed)
Patch Set: lazyboy's 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_bindings_system.cc",
22 "api_bindings_system.h",
21 "api_definitions_natives.cc", 23 "api_definitions_natives.cc",
22 "api_definitions_natives.h", 24 "api_definitions_natives.h",
23 "api_request_handler.cc", 25 "api_request_handler.cc",
24 "api_request_handler.h", 26 "api_request_handler.h",
25 "app_window_custom_bindings.cc", 27 "app_window_custom_bindings.cc",
26 "app_window_custom_bindings.h", 28 "app_window_custom_bindings.h",
27 "argument_spec.cc", 29 "argument_spec.cc",
28 "argument_spec.h", 30 "argument_spec.h",
29 "binding_generating_native_handler.cc", 31 "binding_generating_native_handler.cc",
30 "binding_generating_native_handler.h", 32 "binding_generating_native_handler.h",
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 } 255 }
254 256
255 source_set("unit_tests") { 257 source_set("unit_tests") {
256 testonly = true 258 testonly = true
257 sources = [ 259 sources = [
258 "activity_log_converter_strategy_unittest.cc", 260 "activity_log_converter_strategy_unittest.cc",
259 "api/mojo_private/mojo_private_unittest.cc", 261 "api/mojo_private/mojo_private_unittest.cc",
260 "api_binding_test_util.cc", 262 "api_binding_test_util.cc",
261 "api_binding_test_util.h", 263 "api_binding_test_util.h",
262 "api_binding_unittest.cc", 264 "api_binding_unittest.cc",
265 "api_bindings_system_unittest.cc",
263 "api_request_handler_unittest.cc", 266 "api_request_handler_unittest.cc",
264 "api_test_base.cc", 267 "api_test_base.cc",
265 "api_test_base.h", 268 "api_test_base.h",
266 "api_test_base_unittest.cc", 269 "api_test_base_unittest.cc",
267 "argument_spec_unittest.cc", 270 "argument_spec_unittest.cc",
268 "event_unittest.cc", 271 "event_unittest.cc",
269 "gc_callback_unittest.cc", 272 "gc_callback_unittest.cc",
270 "json_schema_unittest.cc", 273 "json_schema_unittest.cc",
271 "messaging_utils_unittest.cc", 274 "messaging_utils_unittest.cc",
272 "module_system_test.cc", 275 "module_system_test.cc",
(...skipping 26 matching lines...) Expand all
299 "//ui/base", 302 "//ui/base",
300 ] 303 ]
301 304
302 if (enable_wifi_display && proprietary_codecs) { 305 if (enable_wifi_display && proprietary_codecs) {
303 sources += [ 306 sources += [
304 "api/display_source/wifi_display/wifi_display_elementary_stream_descriptor _unittest.cc", 307 "api/display_source/wifi_display/wifi_display_elementary_stream_descriptor _unittest.cc",
305 "api/display_source/wifi_display/wifi_display_media_packetizer_unittest.cc ", 308 "api/display_source/wifi_display/wifi_display_media_packetizer_unittest.cc ",
306 ] 309 ]
307 } 310 }
308 } 311 }
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