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

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

Issue 2704823002: [Extensions Bindings] Add support for custom property types (Closed)
Patch Set: jbroman's Created 3 years, 10 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
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 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 "send_request_natives.h", 182 "send_request_natives.h",
183 "service_worker_data.cc", 183 "service_worker_data.cc",
184 "service_worker_data.h", 184 "service_worker_data.h",
185 "service_worker_request_sender.cc", 185 "service_worker_request_sender.cc",
186 "service_worker_request_sender.h", 186 "service_worker_request_sender.h",
187 "set_icon_natives.cc", 187 "set_icon_natives.cc",
188 "set_icon_natives.h", 188 "set_icon_natives.h",
189 "source_map.h", 189 "source_map.h",
190 "static_v8_external_one_byte_string_resource.cc", 190 "static_v8_external_one_byte_string_resource.cc",
191 "static_v8_external_one_byte_string_resource.h", 191 "static_v8_external_one_byte_string_resource.h",
192 "storage_area.cc",
193 "storage_area.h",
192 "test_features_native_handler.cc", 194 "test_features_native_handler.cc",
193 "test_features_native_handler.h", 195 "test_features_native_handler.h",
194 "test_native_handler.cc", 196 "test_native_handler.cc",
195 "test_native_handler.h", 197 "test_native_handler.h",
196 "user_gestures_native_handler.cc", 198 "user_gestures_native_handler.cc",
197 "user_gestures_native_handler.h", 199 "user_gestures_native_handler.h",
198 "user_script_injector.cc", 200 "user_script_injector.cc",
199 "user_script_injector.h", 201 "user_script_injector.h",
200 "user_script_set.cc", 202 "user_script_set.cc",
201 "user_script_set.h", 203 "user_script_set.h",
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
336 "//ui/base", 338 "//ui/base",
337 ] 339 ]
338 340
339 if (enable_wifi_display && proprietary_codecs) { 341 if (enable_wifi_display && proprietary_codecs) {
340 sources += [ 342 sources += [
341 "api/display_source/wifi_display/wifi_display_elementary_stream_descriptor _unittest.cc", 343 "api/display_source/wifi_display/wifi_display_elementary_stream_descriptor _unittest.cc",
342 "api/display_source/wifi_display/wifi_display_media_packetizer_unittest.cc ", 344 "api/display_source/wifi_display/wifi_display_media_packetizer_unittest.cc ",
343 ] 345 ]
344 } 346 }
345 } 347 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698