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

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

Issue 2379763003: Extract permission alias info from PermissionsProvider (Closed)
Patch Set: not nesting Alias in AliasProvider Created 4 years, 2 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("//mojo/public/tools/bindings/mojom.gni") 6 import("//mojo/public/tools/bindings/mojom.gni")
7 7
8 source_set("common_constants") { 8 source_set("common_constants") {
9 sources = [ 9 sources = [
10 "constants.cc", 10 "constants.cc",
(...skipping 16 matching lines...) Expand all
27 27
28 use_new_wrapper_types = false 28 use_new_wrapper_types = false
29 } 29 }
30 30
31 # GYP version: extensions/extensions.gyp:extensions_common 31 # GYP version: extensions/extensions.gyp:extensions_common
32 # This must be a static library because extensions common depends on 32 # This must be a static library because extensions common depends on
33 # GetTrustedICAPublicKey in extensions/browser which isn't always linked 33 # GetTrustedICAPublicKey in extensions/browser which isn't always linked
34 # in. TODO(brettw): This reverse dependency should be fixed. 34 # in. TODO(brettw): This reverse dependency should be fixed.
35 static_library("common") { 35 static_library("common") {
36 sources = [ 36 sources = [
37 "alias.cc",
38 "alias.h",
39 "alias_provider.cc",
40 "alias_provider.h",
37 "api/bluetooth/bluetooth_manifest_data.cc", 41 "api/bluetooth/bluetooth_manifest_data.cc",
38 "api/bluetooth/bluetooth_manifest_data.h", 42 "api/bluetooth/bluetooth_manifest_data.h",
39 "api/bluetooth/bluetooth_manifest_handler.cc", 43 "api/bluetooth/bluetooth_manifest_handler.cc",
40 "api/bluetooth/bluetooth_manifest_handler.h", 44 "api/bluetooth/bluetooth_manifest_handler.h",
41 "api/bluetooth/bluetooth_manifest_permission.cc", 45 "api/bluetooth/bluetooth_manifest_permission.cc",
42 "api/bluetooth/bluetooth_manifest_permission.h", 46 "api/bluetooth/bluetooth_manifest_permission.h",
43 "api/declarative/declarative_manifest_data.cc", 47 "api/declarative/declarative_manifest_data.cc",
44 "api/declarative/declarative_manifest_data.h", 48 "api/declarative/declarative_manifest_data.h",
45 "api/declarative/declarative_manifest_handler.cc", 49 "api/declarative/declarative_manifest_handler.cc",
46 "api/declarative/declarative_manifest_handler.h", 50 "api/declarative/declarative_manifest_handler.h",
47 "api/messaging/message.h", 51 "api/messaging/message.h",
48 "api/printer_provider/usb_printer_manifest_data.cc", 52 "api/printer_provider/usb_printer_manifest_data.cc",
49 "api/printer_provider/usb_printer_manifest_data.h", 53 "api/printer_provider/usb_printer_manifest_data.h",
50 "api/printer_provider/usb_printer_manifest_handler.cc", 54 "api/printer_provider/usb_printer_manifest_handler.cc",
51 "api/printer_provider/usb_printer_manifest_handler.h", 55 "api/printer_provider/usb_printer_manifest_handler.h",
52 "api/sockets/sockets_manifest_data.cc", 56 "api/sockets/sockets_manifest_data.cc",
53 "api/sockets/sockets_manifest_data.h", 57 "api/sockets/sockets_manifest_data.h",
54 "api/sockets/sockets_manifest_handler.cc", 58 "api/sockets/sockets_manifest_handler.cc",
55 "api/sockets/sockets_manifest_handler.h", 59 "api/sockets/sockets_manifest_handler.h",
56 "api/sockets/sockets_manifest_permission.cc", 60 "api/sockets/sockets_manifest_permission.cc",
57 "api/sockets/sockets_manifest_permission.h", 61 "api/sockets/sockets_manifest_permission.h",
62 "api_alias_info.cc",
63 "api_alias_info.h",
58 "common_manifest_handlers.cc", 64 "common_manifest_handlers.cc",
59 "common_manifest_handlers.h", 65 "common_manifest_handlers.h",
60 "csp_validator.cc", 66 "csp_validator.cc",
61 "csp_validator.h", 67 "csp_validator.h",
62 "dom_action_types.h", 68 "dom_action_types.h",
63 "draggable_region.cc", 69 "draggable_region.cc",
64 "draggable_region.h", 70 "draggable_region.h",
65 "error_utils.cc", 71 "error_utils.cc",
66 "error_utils.h", 72 "error_utils.h",
67 "event_filter.cc", 73 "event_filter.cc",
(...skipping 17 matching lines...) Expand all
85 "extension_messages.h", 91 "extension_messages.h",
86 "extension_paths.cc", 92 "extension_paths.cc",
87 "extension_paths.h", 93 "extension_paths.h",
88 "extension_resource.cc", 94 "extension_resource.cc",
89 "extension_resource.h", 95 "extension_resource.h",
90 "extension_set.cc", 96 "extension_set.cc",
91 "extension_set.h", 97 "extension_set.h",
92 "extension_urls.cc", 98 "extension_urls.cc",
93 "extension_urls.h", 99 "extension_urls.h",
94 "extension_utility_messages.h", 100 "extension_utility_messages.h",
101 "extensions_alias_provider.cc",
102 "extensions_alias_provider.h",
95 "extensions_client.cc", 103 "extensions_client.cc",
96 "extensions_client.h", 104 "extensions_client.h",
97 "feature_switch.cc", 105 "feature_switch.cc",
98 "feature_switch.h", 106 "feature_switch.h",
99 "features/api_feature.h", 107 "features/api_feature.h",
100 "features/base_feature_provider.cc", 108 "features/base_feature_provider.cc",
101 "features/base_feature_provider.h", 109 "features/base_feature_provider.h",
102 "features/behavior_feature.cc", 110 "features/behavior_feature.cc",
103 "features/behavior_feature.h", 111 "features/behavior_feature.h",
104 "features/complex_feature.cc", 112 "features/complex_feature.cc",
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
354 "//extensions/strings", 362 "//extensions/strings",
355 "//ipc", 363 "//ipc",
356 "//testing/gmock", 364 "//testing/gmock",
357 "//testing/gtest", 365 "//testing/gtest",
358 "//ui/base", 366 "//ui/base",
359 "//ui/gfx", 367 "//ui/gfx",
360 "//url", 368 "//url",
361 ] 369 ]
362 } 370 }
363 } # enable_extensions 371 } # enable_extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698