| 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("//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 18 matching lines...) Expand all Loading... |
| 29 sources += [ "mojo/wifi_display_session_service.mojom" ] | 29 sources += [ "mojo/wifi_display_session_service.mojom" ] |
| 30 } | 30 } |
| 31 | 31 |
| 32 public_deps = [ | 32 public_deps = [ |
| 33 "//mojo/common:common_custom_types", | 33 "//mojo/common:common_custom_types", |
| 34 "//url/mojo:url_mojom_gurl", | 34 "//url/mojo:url_mojom_gurl", |
| 35 ] | 35 ] |
| 36 | 36 |
| 37 # TODO(crbug.com/714018): Convert the implementation to use OnceCallback. | 37 # TODO(crbug.com/714018): Convert the implementation to use OnceCallback. |
| 38 use_once_callback = false | 38 use_once_callback = false |
| 39 |
| 40 # TODO(crbug.com/699569): Convert to use the new JS bindings. |
| 41 use_new_js_bindings = false |
| 39 } | 42 } |
| 40 | 43 |
| 41 # This must be a static library because extensions common depends on | 44 # This must be a static library because extensions common depends on |
| 42 # GetTrustedICAPublicKey in extensions/browser which isn't always linked | 45 # GetTrustedICAPublicKey in extensions/browser which isn't always linked |
| 43 # in. TODO(brettw): This reverse dependency should be fixed. | 46 # in. TODO(brettw): This reverse dependency should be fixed. |
| 44 static_library("common") { | 47 static_library("common") { |
| 45 sources = [ | 48 sources = [ |
| 46 "alias.h", | 49 "alias.h", |
| 47 "api/bluetooth/bluetooth_manifest_data.cc", | 50 "api/bluetooth/bluetooth_manifest_data.cc", |
| 48 "api/bluetooth/bluetooth_manifest_data.h", | 51 "api/bluetooth/bluetooth_manifest_data.h", |
| (...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 387 "//ui/base", | 390 "//ui/base", |
| 388 "//ui/gfx", | 391 "//ui/gfx", |
| 389 "//url", | 392 "//url", |
| 390 ] | 393 ] |
| 391 | 394 |
| 392 if (is_chromeos) { | 395 if (is_chromeos) { |
| 393 sources += [ "manifest_handlers/action_handlers_handler_unittest.cc" ] | 396 sources += [ "manifest_handlers/action_handlers_handler_unittest.cc" ] |
| 394 } | 397 } |
| 395 } | 398 } |
| 396 } # enable_extensions | 399 } # enable_extensions |
| OLD | NEW |