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

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: Add gyp Created 4 years, 9 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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 public_deps = [ 198 public_deps = [
196 # This exposes all public content APIs. 199 # This exposes all public content APIs.
197 "//content/public/app:both", 200 "//content/public/app:both",
198 "//content/public/browser", 201 "//content/public/browser",
199 "//content/public/common", 202 "//content/public/common",
200 "//content/public/plugin", 203 "//content/public/plugin",
201 "//content/public/renderer", 204 "//content/public/renderer",
202 "//content/public/utility", 205 "//content/public/utility",
203 ] 206 ]
204 deps = [ 207 deps = [
208 ":mojo_bindings",
205 ":resources", 209 ":resources",
206 "//base", 210 "//base",
207 "//base:base_static", 211 "//base:base_static",
208 "//base/third_party/dynamic_annotations", 212 "//base/third_party/dynamic_annotations",
209 "//cc", 213 "//cc",
210 "//components/crash/content/app:app_breakpad_mac_win_to_be_deleted", 214 "//components/crash/content/app:app_breakpad_mac_win_to_be_deleted",
211 "//components/devtools_discovery", 215 "//components/devtools_discovery",
212 "//components/devtools_http_handler", 216 "//components/devtools_http_handler",
213 "//components/plugins/renderer", 217 "//components/plugins/renderer",
214 "//components/test_runner:test_runner", 218 "//components/test_runner:test_runner",
(...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after
510 sources = [ 514 sources = [
511 "app/shell_content_main.cc", 515 "app/shell_content_main.cc",
512 "app/shell_content_main.h", 516 "app/shell_content_main.h",
513 ] 517 ]
514 518
515 deps = [ 519 deps = [
516 ":content_shell_lib", 520 ":content_shell_lib",
517 ] 521 ]
518 } 522 }
519 } 523 }
524
525 mojom("mojo_bindings") {
526 sources = [
527 "common/layout_test/layout_test_bluetooth_fake_adapter_setter.mojom",
528 ]
529 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698