| 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 assert(enable_extensions) | 8 assert(enable_extensions) |
| 9 | 9 |
| 10 source_set("renderer") { | 10 source_set("renderer") { |
| 11 sources = [ | 11 sources = [ |
| 12 "activity_log_converter_strategy.cc", | 12 "activity_log_converter_strategy.cc", |
| 13 "activity_log_converter_strategy.h", | 13 "activity_log_converter_strategy.h", |
| 14 "api/automation/automation_api_helper.cc", | 14 "api/automation/automation_api_helper.cc", |
| 15 "api/automation/automation_api_helper.h", | 15 "api/automation/automation_api_helper.h", |
| 16 "api/display_source/display_source_session.cc", | 16 "api/display_source/display_source_session.cc", |
| 17 "api/display_source/display_source_session.h", | 17 "api/display_source/display_source_session.h", |
| 18 "api_activity_logger.cc", | 18 "api_activity_logger.cc", |
| 19 "api_activity_logger.h", | 19 "api_activity_logger.h", |
| 20 "api_binding.cc", | 20 "api_binding.cc", |
| 21 "api_binding.h", | 21 "api_binding.h", |
| 22 "api_binding_bridge.cc", | 22 "api_binding_bridge.cc", |
| 23 "api_binding_bridge.h", | 23 "api_binding_bridge.h", |
| 24 "api_binding_hooks.cc", | 24 "api_binding_hooks.cc", |
| 25 "api_binding_hooks.h", | 25 "api_binding_hooks.h", |
| 26 "api_binding_types.h", | 26 "api_binding_types.h", |
| 27 "api_bindings_system.cc", | 27 "api_bindings_system.cc", |
| 28 "api_bindings_system.h", | 28 "api_bindings_system.h", |
| 29 "api_custom_types.cc", |
| 30 "api_custom_types.h", |
| 29 "api_definitions_natives.cc", | 31 "api_definitions_natives.cc", |
| 30 "api_definitions_natives.h", | 32 "api_definitions_natives.h", |
| 31 "api_event_handler.cc", | 33 "api_event_handler.cc", |
| 32 "api_event_handler.h", | 34 "api_event_handler.h", |
| 33 "api_last_error.cc", | 35 "api_last_error.cc", |
| 34 "api_last_error.h", | 36 "api_last_error.h", |
| 35 "api_request_handler.cc", | 37 "api_request_handler.cc", |
| 36 "api_request_handler.h", | 38 "api_request_handler.h", |
| 37 "api_signature.cc", | 39 "api_signature.cc", |
| 38 "api_signature.h", | 40 "api_signature.h", |
| 39 "api_type_reference_map.cc", | 41 "api_type_reference_map.cc", |
| 40 "api_type_reference_map.h", | 42 "api_type_reference_map.h", |
| 41 "app_window_custom_bindings.cc", | 43 "app_window_custom_bindings.cc", |
| 42 "app_window_custom_bindings.h", | 44 "app_window_custom_bindings.h", |
| 43 "argument_spec.cc", | 45 "argument_spec.cc", |
| 44 "argument_spec.h", | 46 "argument_spec.h", |
| 45 "binding_generating_native_handler.cc", | 47 "binding_generating_native_handler.cc", |
| 46 "binding_generating_native_handler.h", | 48 "binding_generating_native_handler.h", |
| 47 "blob_native_handler.cc", | 49 "blob_native_handler.cc", |
| 48 "blob_native_handler.h", | 50 "blob_native_handler.h", |
| 51 "chrome_setting.cc", |
| 52 "chrome_setting.h", |
| 49 "console.cc", | 53 "console.cc", |
| 50 "console.h", | 54 "console.h", |
| 51 "content_watcher.cc", | 55 "content_watcher.cc", |
| 52 "content_watcher.h", | 56 "content_watcher.h", |
| 53 "context_menus_custom_bindings.cc", | 57 "context_menus_custom_bindings.cc", |
| 54 "context_menus_custom_bindings.h", | 58 "context_menus_custom_bindings.h", |
| 55 "css_native_handler.cc", | 59 "css_native_handler.cc", |
| 56 "css_native_handler.h", | 60 "css_native_handler.h", |
| 57 "dispatcher.cc", | 61 "dispatcher.cc", |
| 58 "dispatcher.h", | 62 "dispatcher.h", |
| (...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 338 "//ui/base", | 342 "//ui/base", |
| 339 ] | 343 ] |
| 340 | 344 |
| 341 if (enable_wifi_display && proprietary_codecs) { | 345 if (enable_wifi_display && proprietary_codecs) { |
| 342 sources += [ | 346 sources += [ |
| 343 "api/display_source/wifi_display/wifi_display_elementary_stream_descriptor
_unittest.cc", | 347 "api/display_source/wifi_display/wifi_display_elementary_stream_descriptor
_unittest.cc", |
| 344 "api/display_source/wifi_display/wifi_display_media_packetizer_unittest.cc
", | 348 "api/display_source/wifi_display/wifi_display_media_packetizer_unittest.cc
", |
| 345 ] | 349 ] |
| 346 } | 350 } |
| 347 } | 351 } |
| OLD | NEW |