| 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") { |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 "api_type_reference_map.cc", | 39 "api_type_reference_map.cc", |
| 40 "api_type_reference_map.h", | 40 "api_type_reference_map.h", |
| 41 "app_window_custom_bindings.cc", | 41 "app_window_custom_bindings.cc", |
| 42 "app_window_custom_bindings.h", | 42 "app_window_custom_bindings.h", |
| 43 "argument_spec.cc", | 43 "argument_spec.cc", |
| 44 "argument_spec.h", | 44 "argument_spec.h", |
| 45 "binding_generating_native_handler.cc", | 45 "binding_generating_native_handler.cc", |
| 46 "binding_generating_native_handler.h", | 46 "binding_generating_native_handler.h", |
| 47 "blob_native_handler.cc", | 47 "blob_native_handler.cc", |
| 48 "blob_native_handler.h", | 48 "blob_native_handler.h", |
| 49 "chrome_setting.cc", |
| 50 "chrome_setting.h", |
| 49 "console.cc", | 51 "console.cc", |
| 50 "console.h", | 52 "console.h", |
| 51 "content_watcher.cc", | 53 "content_watcher.cc", |
| 52 "content_watcher.h", | 54 "content_watcher.h", |
| 53 "context_menus_custom_bindings.cc", | 55 "context_menus_custom_bindings.cc", |
| 54 "context_menus_custom_bindings.h", | 56 "context_menus_custom_bindings.h", |
| 55 "css_native_handler.cc", | 57 "css_native_handler.cc", |
| 56 "css_native_handler.h", | 58 "css_native_handler.h", |
| 57 "dispatcher.cc", | 59 "dispatcher.cc", |
| 58 "dispatcher.h", | 60 "dispatcher.h", |
| (...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 338 "//ui/base", | 340 "//ui/base", |
| 339 ] | 341 ] |
| 340 | 342 |
| 341 if (enable_wifi_display && proprietary_codecs) { | 343 if (enable_wifi_display && proprietary_codecs) { |
| 342 sources += [ | 344 sources += [ |
| 343 "api/display_source/wifi_display/wifi_display_elementary_stream_descriptor
_unittest.cc", | 345 "api/display_source/wifi_display/wifi_display_elementary_stream_descriptor
_unittest.cc", |
| 344 "api/display_source/wifi_display/wifi_display_media_packetizer_unittest.cc
", | 346 "api/display_source/wifi_display/wifi_display_media_packetizer_unittest.cc
", |
| 345 ] | 347 ] |
| 346 } | 348 } |
| 347 } | 349 } |
| OLD | NEW |