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

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

Issue 2837023003: [Extensions Bindings] Add argument parsing errors (Closed)
Patch Set: nits Created 3 years, 8 months 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_invocation_errors.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 import("//extensions/features/features.gni") 6 import("//extensions/features/features.gni")
7 7
8 assert(enable_extensions) 8 assert(enable_extensions)
9 9
10 source_set("renderer") { 10 source_set("renderer") {
(...skipping 18 matching lines...) Expand all
29 "api_binding_js_util.h", 29 "api_binding_js_util.h",
30 "api_binding_types.h", 30 "api_binding_types.h",
31 "api_bindings_system.cc", 31 "api_bindings_system.cc",
32 "api_bindings_system.h", 32 "api_bindings_system.h",
33 "api_definitions_natives.cc", 33 "api_definitions_natives.cc",
34 "api_definitions_natives.h", 34 "api_definitions_natives.h",
35 "api_event_handler.cc", 35 "api_event_handler.cc",
36 "api_event_handler.h", 36 "api_event_handler.h",
37 "api_event_listeners.cc", 37 "api_event_listeners.cc",
38 "api_event_listeners.h", 38 "api_event_listeners.h",
39 "api_invocation_errors.cc",
40 "api_invocation_errors.h",
39 "api_last_error.cc", 41 "api_last_error.cc",
40 "api_last_error.h", 42 "api_last_error.h",
41 "api_request_handler.cc", 43 "api_request_handler.cc",
42 "api_request_handler.h", 44 "api_request_handler.h",
43 "api_signature.cc", 45 "api_signature.cc",
44 "api_signature.h", 46 "api_signature.h",
45 "api_type_reference_map.cc", 47 "api_type_reference_map.cc",
46 "api_type_reference_map.h", 48 "api_type_reference_map.h",
47 "app_window_custom_bindings.cc", 49 "app_window_custom_bindings.cc",
48 "app_window_custom_bindings.h", 50 "app_window_custom_bindings.h",
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after
304 "api_binding_js_util_unittest.cc", 306 "api_binding_js_util_unittest.cc",
305 "api_binding_test.cc", 307 "api_binding_test.cc",
306 "api_binding_test.h", 308 "api_binding_test.h",
307 "api_binding_test_util.cc", 309 "api_binding_test_util.cc",
308 "api_binding_test_util.h", 310 "api_binding_test_util.h",
309 "api_binding_unittest.cc", 311 "api_binding_unittest.cc",
310 "api_bindings_system_unittest.cc", 312 "api_bindings_system_unittest.cc",
311 "api_bindings_system_unittest.h", 313 "api_bindings_system_unittest.h",
312 "api_event_handler_unittest.cc", 314 "api_event_handler_unittest.cc",
313 "api_event_listeners_unittest.cc", 315 "api_event_listeners_unittest.cc",
316 "api_invocation_errors_unittest.cc",
314 "api_last_error_unittest.cc", 317 "api_last_error_unittest.cc",
315 "api_request_handler_unittest.cc", 318 "api_request_handler_unittest.cc",
316 "api_test_base.cc", 319 "api_test_base.cc",
317 "api_test_base.h", 320 "api_test_base.h",
318 "api_test_base_unittest.cc", 321 "api_test_base_unittest.cc",
319 "argument_spec_unittest.cc", 322 "argument_spec_unittest.cc",
320 "declarative_event_unittest.cc", 323 "declarative_event_unittest.cc",
321 "event_unittest.cc", 324 "event_unittest.cc",
322 "gc_callback_unittest.cc", 325 "gc_callback_unittest.cc",
323 "json_schema_unittest.cc", 326 "json_schema_unittest.cc",
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
360 "//ui/base", 363 "//ui/base",
361 ] 364 ]
362 365
363 if (enable_wifi_display && proprietary_codecs) { 366 if (enable_wifi_display && proprietary_codecs) {
364 sources += [ 367 sources += [
365 "api/display_source/wifi_display/wifi_display_elementary_stream_descriptor _unittest.cc", 368 "api/display_source/wifi_display/wifi_display_elementary_stream_descriptor _unittest.cc",
366 "api/display_source/wifi_display/wifi_display_media_packetizer_unittest.cc ", 369 "api/display_source/wifi_display/wifi_display_media_packetizer_unittest.cc ",
367 ] 370 ]
368 } 371 }
369 } 372 }
OLDNEW
« no previous file with comments | « no previous file | extensions/renderer/api_invocation_errors.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698