| 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("//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 Loading... |
| 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.h", |
| 37 "api/bluetooth/bluetooth_manifest_data.cc", | 38 "api/bluetooth/bluetooth_manifest_data.cc", |
| 38 "api/bluetooth/bluetooth_manifest_data.h", | 39 "api/bluetooth/bluetooth_manifest_data.h", |
| 39 "api/bluetooth/bluetooth_manifest_handler.cc", | 40 "api/bluetooth/bluetooth_manifest_handler.cc", |
| 40 "api/bluetooth/bluetooth_manifest_handler.h", | 41 "api/bluetooth/bluetooth_manifest_handler.h", |
| 41 "api/bluetooth/bluetooth_manifest_permission.cc", | 42 "api/bluetooth/bluetooth_manifest_permission.cc", |
| 42 "api/bluetooth/bluetooth_manifest_permission.h", | 43 "api/bluetooth/bluetooth_manifest_permission.h", |
| 43 "api/declarative/declarative_manifest_data.cc", | 44 "api/declarative/declarative_manifest_data.cc", |
| 44 "api/declarative/declarative_manifest_data.h", | 45 "api/declarative/declarative_manifest_data.h", |
| 45 "api/declarative/declarative_manifest_handler.cc", | 46 "api/declarative/declarative_manifest_handler.cc", |
| 46 "api/declarative/declarative_manifest_handler.h", | 47 "api/declarative/declarative_manifest_handler.h", |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 "extension_messages.h", | 86 "extension_messages.h", |
| 86 "extension_paths.cc", | 87 "extension_paths.cc", |
| 87 "extension_paths.h", | 88 "extension_paths.h", |
| 88 "extension_resource.cc", | 89 "extension_resource.cc", |
| 89 "extension_resource.h", | 90 "extension_resource.h", |
| 90 "extension_set.cc", | 91 "extension_set.cc", |
| 91 "extension_set.h", | 92 "extension_set.h", |
| 92 "extension_urls.cc", | 93 "extension_urls.cc", |
| 93 "extension_urls.h", | 94 "extension_urls.h", |
| 94 "extension_utility_messages.h", | 95 "extension_utility_messages.h", |
| 96 "extensions_aliases.cc", |
| 97 "extensions_aliases.h", |
| 95 "extensions_client.cc", | 98 "extensions_client.cc", |
| 96 "extensions_client.h", | 99 "extensions_client.h", |
| 97 "feature_switch.cc", | 100 "feature_switch.cc", |
| 98 "feature_switch.h", | 101 "feature_switch.h", |
| 99 "features/api_feature.h", | 102 "features/api_feature.h", |
| 100 "features/base_feature_provider.cc", | 103 "features/base_feature_provider.cc", |
| 101 "features/base_feature_provider.h", | 104 "features/base_feature_provider.h", |
| 102 "features/behavior_feature.cc", | 105 "features/behavior_feature.cc", |
| 103 "features/behavior_feature.h", | 106 "features/behavior_feature.h", |
| 104 "features/complex_feature.cc", | 107 "features/complex_feature.cc", |
| (...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 354 "//extensions/strings", | 357 "//extensions/strings", |
| 355 "//ipc", | 358 "//ipc", |
| 356 "//testing/gmock", | 359 "//testing/gmock", |
| 357 "//testing/gtest", | 360 "//testing/gtest", |
| 358 "//ui/base", | 361 "//ui/base", |
| 359 "//ui/gfx", | 362 "//ui/gfx", |
| 360 "//url", | 363 "//url", |
| 361 ] | 364 ] |
| 362 } | 365 } |
| 363 } # enable_extensions | 366 } # enable_extensions |
| OLD | NEW |