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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 "console.cc", | 59 "console.cc", |
60 "console.h", | 60 "console.h", |
61 "content_setting.cc", | 61 "content_setting.cc", |
62 "content_setting.h", | 62 "content_setting.h", |
63 "content_watcher.cc", | 63 "content_watcher.cc", |
64 "content_watcher.h", | 64 "content_watcher.h", |
65 "context_menus_custom_bindings.cc", | 65 "context_menus_custom_bindings.cc", |
66 "context_menus_custom_bindings.h", | 66 "context_menus_custom_bindings.h", |
67 "css_native_handler.cc", | 67 "css_native_handler.cc", |
68 "css_native_handler.h", | 68 "css_native_handler.h", |
| 69 "declarative_content_hooks_delegate.cc", |
| 70 "declarative_content_hooks_delegate.h", |
69 "declarative_event.cc", | 71 "declarative_event.cc", |
70 "declarative_event.h", | 72 "declarative_event.h", |
71 "dispatcher.cc", | 73 "dispatcher.cc", |
72 "dispatcher.h", | 74 "dispatcher.h", |
73 "dispatcher_delegate.h", | 75 "dispatcher_delegate.h", |
74 "display_source_custom_bindings.cc", | 76 "display_source_custom_bindings.cc", |
75 "display_source_custom_bindings.h", | 77 "display_source_custom_bindings.h", |
76 "document_custom_bindings.cc", | 78 "document_custom_bindings.cc", |
77 "document_custom_bindings.h", | 79 "document_custom_bindings.h", |
78 "dom_activity_logger.cc", | 80 "dom_activity_logger.cc", |
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
363 "//ui/base", | 365 "//ui/base", |
364 ] | 366 ] |
365 | 367 |
366 if (enable_wifi_display && proprietary_codecs) { | 368 if (enable_wifi_display && proprietary_codecs) { |
367 sources += [ | 369 sources += [ |
368 "api/display_source/wifi_display/wifi_display_elementary_stream_descriptor
_unittest.cc", | 370 "api/display_source/wifi_display/wifi_display_elementary_stream_descriptor
_unittest.cc", |
369 "api/display_source/wifi_display/wifi_display_media_packetizer_unittest.cc
", | 371 "api/display_source/wifi_display/wifi_display_media_packetizer_unittest.cc
", |
370 ] | 372 ] |
371 } | 373 } |
372 } | 374 } |
OLD | NEW |