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

Side by Side Diff: components/mus/example/common/BUILD.gn

Issue 1407073002: Adds GetDisplays() to WindowManager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge 2 trunk Created 5 years, 2 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/ui.gni") 5 import("//build/config/ui.gni")
6 import("//mojo/public/mojo_application.gni") 6 import("//mojo/public/mojo_application.gni")
7 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") 7 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni")
8 import("//tools/grit/repack.gni") 8 import("//tools/grit/repack.gni")
9 9
10 source_set("common") { 10 source_set("common") {
11 testonly = true 11 testonly = true
12 12
13 sources = [ 13 sources = [
14 "mus_views_init.cc", 14 "mus_views_init.cc",
15 "mus_views_init.h", 15 "mus_views_init.h",
16 ] 16 ]
17 17
18 deps = [ 18 deps = [
19 "//base", 19 "//base",
20 "//components/mus/public/cpp", 20 "//components/mus/public/cpp",
21 "//components/mus/public/interfaces", 21 "//components/mus/public/interfaces",
22 "//mojo/application/public/cpp", 22 "//mojo/application/public/cpp",
23 "//mojo/application/public/cpp:sources", 23 "//mojo/application/public/cpp:sources",
24 "//mojo/converters/geometry",
25 "//mojo/converters/network",
24 "//third_party/mojo/src/mojo/public/cpp/bindings", 26 "//third_party/mojo/src/mojo/public/cpp/bindings",
25 "//ui/views", 27 "//ui/views",
26 "//ui/views/mus", 28 "//ui/views/mus",
27 ] 29 ]
28 30
29 data_deps = [ 31 data_deps = [
30 "//components/mus", 32 "//components/mus",
31 ] 33 ]
32 34
33 public_deps = [ 35 public_deps = [
34 ":resources", 36 ":resources",
35 ] 37 ]
36 } 38 }
37 39
38 repack("resources") { 40 repack("resources") {
39 sources = [ 41 sources = [
40 "$root_gen_dir/ui/resources/ui_resources_100_percent.pak", 42 "$root_gen_dir/ui/resources/ui_resources_100_percent.pak",
41 "$root_gen_dir/ui/strings/app_locale_settings_en-US.pak", 43 "$root_gen_dir/ui/strings/app_locale_settings_en-US.pak",
42 "$root_gen_dir/ui/strings/ui_strings_en-US.pak", 44 "$root_gen_dir/ui/strings/ui_strings_en-US.pak",
43 "$root_gen_dir/ui/views/resources/views_resources_100_percent.pak", 45 "$root_gen_dir/ui/views/resources/views_resources_100_percent.pak",
44 ] 46 ]
45 output = "$root_out_dir/example_resources.pak" 47 output = "$root_out_dir/example_resources.pak"
46 deps = [ 48 deps = [
47 "//ui/strings", 49 "//ui/strings",
48 "//ui/resources", 50 "//ui/resources",
49 "//ui/views/resources", 51 "//ui/views/resources",
50 ] 52 ]
51 } 53 }
OLDNEW
« no previous file with comments | « components/html_viewer/run_all_unittests.cc ('k') | components/mus/example/common/mus_views_init.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698