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

Side by Side Diff: content/shell/BUILD.gn

Issue 1815483003: bluetooth: Create Mojo equivalent of SetBluetoothMockDataSet (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@bluetooth-mojo
Patch Set: MMerge with ToT Created 4 years, 8 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("//build/config/sanitizers/sanitizers.gni") 6 import("//build/config/sanitizers/sanitizers.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//build/config/win/console_app.gni") 8 import("//build/config/win/console_app.gni")
9 import("//build/config/win/manifest.gni") 9 import("//build/config/win/manifest.gni")
10 import("//media/media_options.gni") 10 import("//media/media_options.gni")
11 import("//mojo/public/tools/bindings/mojom.gni")
11 import("//tools/grit/repack.gni") 12 import("//tools/grit/repack.gni")
12 import("//tools/grit/grit_rule.gni") 13 import("//tools/grit/grit_rule.gni")
13 if (is_android) { 14 if (is_android) {
14 import("//build/config/android/config.gni") 15 import("//build/config/android/config.gni")
15 } 16 }
16 17
17 declare_args() { 18 declare_args() {
18 content_shell_product_name = "Content Shell" 19 content_shell_product_name = "Content Shell"
19 content_shell_version = "99.77.34.5" 20 content_shell_version = "99.77.34.5"
20 } 21 }
(...skipping 27 matching lines...) Expand all
48 "app/shell_main_delegate_mac.h", 49 "app/shell_main_delegate_mac.h",
49 "app/shell_main_delegate_mac.mm", 50 "app/shell_main_delegate_mac.mm",
50 "browser/layout_test/blink_test_controller.cc", 51 "browser/layout_test/blink_test_controller.cc",
51 "browser/layout_test/blink_test_controller.h", 52 "browser/layout_test/blink_test_controller.h",
52 "browser/layout_test/layout_test_android.cc", 53 "browser/layout_test/layout_test_android.cc",
53 "browser/layout_test/layout_test_android.h", 54 "browser/layout_test/layout_test_android.h",
54 "browser/layout_test/layout_test_bluetooth_adapter_provider.cc", 55 "browser/layout_test/layout_test_bluetooth_adapter_provider.cc",
55 "browser/layout_test/layout_test_bluetooth_adapter_provider.h", 56 "browser/layout_test/layout_test_bluetooth_adapter_provider.h",
56 "browser/layout_test/layout_test_bluetooth_chooser_factory.cc", 57 "browser/layout_test/layout_test_bluetooth_chooser_factory.cc",
57 "browser/layout_test/layout_test_bluetooth_chooser_factory.h", 58 "browser/layout_test/layout_test_bluetooth_chooser_factory.h",
59 "browser/layout_test/layout_test_bluetooth_fake_adapter_setter_impl.cc",
60 "browser/layout_test/layout_test_bluetooth_fake_adapter_setter_impl.h",
58 "browser/layout_test/layout_test_browser_context.cc", 61 "browser/layout_test/layout_test_browser_context.cc",
59 "browser/layout_test/layout_test_browser_context.h", 62 "browser/layout_test/layout_test_browser_context.h",
60 "browser/layout_test/layout_test_browser_main.cc", 63 "browser/layout_test/layout_test_browser_main.cc",
61 "browser/layout_test/layout_test_browser_main.h", 64 "browser/layout_test/layout_test_browser_main.h",
62 "browser/layout_test/layout_test_browser_main_parts.cc", 65 "browser/layout_test/layout_test_browser_main_parts.cc",
63 "browser/layout_test/layout_test_browser_main_parts.h", 66 "browser/layout_test/layout_test_browser_main_parts.h",
64 "browser/layout_test/layout_test_content_browser_client.cc", 67 "browser/layout_test/layout_test_content_browser_client.cc",
65 "browser/layout_test/layout_test_content_browser_client.h", 68 "browser/layout_test/layout_test_content_browser_client.h",
66 "browser/layout_test/layout_test_devtools_frontend.cc", 69 "browser/layout_test/layout_test_devtools_frontend.cc",
67 "browser/layout_test/layout_test_devtools_frontend.h", 70 "browser/layout_test/layout_test_devtools_frontend.h",
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 public_deps = [ 200 public_deps = [
198 # This exposes all public content APIs. 201 # This exposes all public content APIs.
199 "//content/public/app:both", 202 "//content/public/app:both",
200 "//content/public/browser", 203 "//content/public/browser",
201 "//content/public/common", 204 "//content/public/common",
202 "//content/public/plugin", 205 "//content/public/plugin",
203 "//content/public/renderer", 206 "//content/public/renderer",
204 "//content/public/utility", 207 "//content/public/utility",
205 ] 208 ]
206 deps = [ 209 deps = [
210 ":mojo_bindings",
207 ":resources", 211 ":resources",
208 "//base", 212 "//base",
209 "//base:base_static", 213 "//base:base_static",
210 "//base/third_party/dynamic_annotations", 214 "//base/third_party/dynamic_annotations",
211 "//cc", 215 "//cc",
212 "//components/crash/content/app:app_breakpad_mac_win_to_be_deleted", 216 "//components/crash/content/app:app_breakpad_mac_win_to_be_deleted",
213 "//components/devtools_discovery", 217 "//components/devtools_discovery",
214 "//components/devtools_http_handler", 218 "//components/devtools_http_handler",
215 "//components/plugins/renderer", 219 "//components/plugins/renderer",
216 "//components/test_runner:test_runner", 220 "//components/test_runner:test_runner",
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after
523 sources = [ 527 sources = [
524 "app/shell_content_main.cc", 528 "app/shell_content_main.cc",
525 "app/shell_content_main.h", 529 "app/shell_content_main.h",
526 ] 530 ]
527 531
528 deps = [ 532 deps = [
529 ":content_shell_lib", 533 ":content_shell_lib",
530 ] 534 ]
531 } 535 }
532 } 536 }
537
538 mojom("mojo_bindings") {
539 sources = [
540 "common/layout_test/layout_test_bluetooth_fake_adapter_setter.mojom",
541 ]
542 }
OLDNEW
« no previous file with comments | « content/content_shell.gypi ('k') | content/shell/browser/layout_test/layout_test_bluetooth_fake_adapter_setter_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698