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

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

Issue 2881453002: DNR Prototype: With flatbuffers
Patch Set: -- Created 3 years, 6 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
« no previous file with comments | « extensions/browser/mock_extension_system.cc ('k') | extensions/common/api/_api_features.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 "api/bluetooth/bluetooth_manifest_handler.cc", 49 "api/bluetooth/bluetooth_manifest_handler.cc",
50 "api/bluetooth/bluetooth_manifest_handler.h", 50 "api/bluetooth/bluetooth_manifest_handler.h",
51 "api/bluetooth/bluetooth_manifest_permission.cc", 51 "api/bluetooth/bluetooth_manifest_permission.cc",
52 "api/bluetooth/bluetooth_manifest_permission.h", 52 "api/bluetooth/bluetooth_manifest_permission.h",
53 "api/declarative/declarative_constants.cc", 53 "api/declarative/declarative_constants.cc",
54 "api/declarative/declarative_constants.h", 54 "api/declarative/declarative_constants.h",
55 "api/declarative/declarative_manifest_data.cc", 55 "api/declarative/declarative_manifest_data.cc",
56 "api/declarative/declarative_manifest_data.h", 56 "api/declarative/declarative_manifest_data.h",
57 "api/declarative/declarative_manifest_handler.cc", 57 "api/declarative/declarative_manifest_handler.cc",
58 "api/declarative/declarative_manifest_handler.h", 58 "api/declarative/declarative_manifest_handler.h",
59 "api/declarative_net_request/constants.h",
60 "api/declarative_net_request/indexed_rule.cc",
61 "api/declarative_net_request/indexed_rule.h",
62 "api/declarative_net_request/rules_indexer_util.cc",
63 "api/declarative_net_request/rules_indexer_util.h",
64 "api/declarative_net_request/rules_manifest_info.cc",
65 "api/declarative_net_request/rules_manifest_info.h",
66 "api/declarative_net_request/ruleset_indexer.cc",
67 "api/declarative_net_request/ruleset_indexer.h",
59 "api/messaging/message.h", 68 "api/messaging/message.h",
60 "api/messaging/port_id.cc", 69 "api/messaging/port_id.cc",
61 "api/messaging/port_id.h", 70 "api/messaging/port_id.h",
62 "api/printer_provider/usb_printer_manifest_data.cc", 71 "api/printer_provider/usb_printer_manifest_data.cc",
63 "api/printer_provider/usb_printer_manifest_data.h", 72 "api/printer_provider/usb_printer_manifest_data.h",
64 "api/printer_provider/usb_printer_manifest_handler.cc", 73 "api/printer_provider/usb_printer_manifest_handler.cc",
65 "api/printer_provider/usb_printer_manifest_handler.h", 74 "api/printer_provider/usb_printer_manifest_handler.h",
66 "api/sockets/sockets_manifest_data.cc", 75 "api/sockets/sockets_manifest_data.cc",
67 "api/sockets/sockets_manifest_data.h", 76 "api/sockets/sockets_manifest_data.h",
68 "api/sockets/sockets_manifest_handler.cc", 77 "api/sockets/sockets_manifest_handler.cc",
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
280 ] 289 ]
281 290
282 deps = [ 291 deps = [
283 "//base", 292 "//base",
284 293
285 # TODO(benwells): figure out what to do with the api target and 294 # TODO(benwells): figure out what to do with the api target and
286 # api resources compiled into the chrome resource bundle. 295 # api resources compiled into the chrome resource bundle.
287 # http://crbug.com/162530 296 # http://crbug.com/162530
288 "//chrome:resources", 297 "//chrome:resources",
289 "//components/crx_file", 298 "//components/crx_file",
299 "//components/subresource_filter/content/common",
290 "//components/url_matcher", 300 "//components/url_matcher",
291 "//crypto", 301 "//crypto",
292 "//device/bluetooth", 302 "//device/bluetooth",
293 "//device/usb", 303 "//device/usb",
294 "//extensions:extensions_resources", 304 "//extensions:extensions_resources",
295 "//extensions/common/api", 305 "//extensions/common/api",
296 "//extensions/strings", 306 "//extensions/strings",
297 "//net", 307 "//net",
298 "//third_party/boringssl", 308 "//third_party/boringssl",
299 "//third_party/icu", 309 "//third_party/icu",
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
387 "//ui/base", 397 "//ui/base",
388 "//ui/gfx", 398 "//ui/gfx",
389 "//url", 399 "//url",
390 ] 400 ]
391 401
392 if (is_chromeos) { 402 if (is_chromeos) {
393 sources += [ "manifest_handlers/action_handlers_handler_unittest.cc" ] 403 sources += [ "manifest_handlers/action_handlers_handler_unittest.cc" ]
394 } 404 }
395 } 405 }
396 } # enable_extensions 406 } # enable_extensions
OLDNEW
« no previous file with comments | « extensions/browser/mock_extension_system.cc ('k') | extensions/common/api/_api_features.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698