| 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 10 matching lines...) Expand all Loading... |
| 21 "mojo/keep_alive.mojom", | 21 "mojo/keep_alive.mojom", |
| 22 "mojo/stash.mojom", | 22 "mojo/stash.mojom", |
| 23 ] | 23 ] |
| 24 if (proprietary_codecs && enable_wifi_display) { | 24 if (proprietary_codecs && enable_wifi_display) { |
| 25 sources += [ "mojo/wifi_display_session_service.mojom" ] | 25 sources += [ "mojo/wifi_display_session_service.mojom" ] |
| 26 } | 26 } |
| 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 | |
| 32 # This must be a static library because extensions common depends on | 31 # This must be a static library because extensions common depends on |
| 33 # GetTrustedICAPublicKey in extensions/browser which isn't always linked | 32 # GetTrustedICAPublicKey in extensions/browser which isn't always linked |
| 34 # in. TODO(brettw): This reverse dependency should be fixed. | 33 # in. TODO(brettw): This reverse dependency should be fixed. |
| 35 static_library("common") { | 34 static_library("common") { |
| 36 sources = [ | 35 sources = [ |
| 37 "api/bluetooth/bluetooth_manifest_data.cc", | 36 "api/bluetooth/bluetooth_manifest_data.cc", |
| 38 "api/bluetooth/bluetooth_manifest_data.h", | 37 "api/bluetooth/bluetooth_manifest_data.h", |
| 39 "api/bluetooth/bluetooth_manifest_handler.cc", | 38 "api/bluetooth/bluetooth_manifest_handler.cc", |
| 40 "api/bluetooth/bluetooth_manifest_handler.h", | 39 "api/bluetooth/bluetooth_manifest_handler.h", |
| 41 "api/bluetooth/bluetooth_manifest_permission.cc", | 40 "api/bluetooth/bluetooth_manifest_permission.cc", |
| (...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 354 "//extensions/strings", | 353 "//extensions/strings", |
| 355 "//ipc", | 354 "//ipc", |
| 356 "//testing/gmock", | 355 "//testing/gmock", |
| 357 "//testing/gtest", | 356 "//testing/gtest", |
| 358 "//ui/base", | 357 "//ui/base", |
| 359 "//ui/gfx", | 358 "//ui/gfx", |
| 360 "//url", | 359 "//url", |
| 361 ] | 360 ] |
| 362 } | 361 } |
| 363 } # enable_extensions | 362 } # enable_extensions |
| OLD | NEW |