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

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

Issue 2853023002: [Extensions Bindings] Add native declarativeContent verification (Closed)
Patch Set: lazyboy's Created 3 years, 7 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 import("//mojo/public/tools/bindings/mojom.gni") 7 import("//mojo/public/tools/bindings/mojom.gni")
8 8
9 source_set("common_constants") { 9 source_set("common_constants") {
10 sources = [ 10 sources = [
(...skipping 29 matching lines...) Expand all
40 # in. TODO(brettw): This reverse dependency should be fixed. 40 # in. TODO(brettw): This reverse dependency should be fixed.
41 static_library("common") { 41 static_library("common") {
42 sources = [ 42 sources = [
43 "alias.h", 43 "alias.h",
44 "api/bluetooth/bluetooth_manifest_data.cc", 44 "api/bluetooth/bluetooth_manifest_data.cc",
45 "api/bluetooth/bluetooth_manifest_data.h", 45 "api/bluetooth/bluetooth_manifest_data.h",
46 "api/bluetooth/bluetooth_manifest_handler.cc", 46 "api/bluetooth/bluetooth_manifest_handler.cc",
47 "api/bluetooth/bluetooth_manifest_handler.h", 47 "api/bluetooth/bluetooth_manifest_handler.h",
48 "api/bluetooth/bluetooth_manifest_permission.cc", 48 "api/bluetooth/bluetooth_manifest_permission.cc",
49 "api/bluetooth/bluetooth_manifest_permission.h", 49 "api/bluetooth/bluetooth_manifest_permission.h",
50 "api/declarative/declarative_constants.cc",
51 "api/declarative/declarative_constants.h",
50 "api/declarative/declarative_manifest_data.cc", 52 "api/declarative/declarative_manifest_data.cc",
51 "api/declarative/declarative_manifest_data.h", 53 "api/declarative/declarative_manifest_data.h",
52 "api/declarative/declarative_manifest_handler.cc", 54 "api/declarative/declarative_manifest_handler.cc",
53 "api/declarative/declarative_manifest_handler.h", 55 "api/declarative/declarative_manifest_handler.h",
54 "api/messaging/message.h", 56 "api/messaging/message.h",
55 "api/messaging/port_id.cc", 57 "api/messaging/port_id.cc",
56 "api/messaging/port_id.h", 58 "api/messaging/port_id.h",
57 "api/printer_provider/usb_printer_manifest_data.cc", 59 "api/printer_provider/usb_printer_manifest_data.cc",
58 "api/printer_provider/usb_printer_manifest_data.h", 60 "api/printer_provider/usb_printer_manifest_data.h",
59 "api/printer_provider/usb_printer_manifest_handler.cc", 61 "api/printer_provider/usb_printer_manifest_handler.cc",
(...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after
382 "//ui/base", 384 "//ui/base",
383 "//ui/gfx", 385 "//ui/gfx",
384 "//url", 386 "//url",
385 ] 387 ]
386 388
387 if (is_chromeos) { 389 if (is_chromeos) {
388 sources += [ "manifest_handlers/action_handlers_handler_unittest.cc" ] 390 sources += [ "manifest_handlers/action_handlers_handler_unittest.cc" ]
389 } 391 }
390 } 392 }
391 } # enable_extensions 393 } # enable_extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698