| 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/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/example/wm:interfaces", | 20 "//components/mus/example/wm:interfaces", |
| 21 "//components/mus/public/cpp", | 21 "//components/mus/public/cpp", |
| 22 "//components/mus/public/interfaces", | 22 "//components/mus/public/interfaces", |
| 23 "//mojo/application/public/cpp", | 23 "//mojo/application/public/cpp", |
| 24 "//mandoline/ui/aura", | |
| 25 "//mojo/application/public/cpp:sources", | 24 "//mojo/application/public/cpp:sources", |
| 26 "//third_party/mojo/src/mojo/public/cpp/bindings", | 25 "//third_party/mojo/src/mojo/public/cpp/bindings", |
| 27 "//ui/views", | 26 "//ui/views", |
| 27 "//ui/views/mus", |
| 28 ] | 28 ] |
| 29 | 29 |
| 30 data_deps = [ | 30 data_deps = [ |
| 31 "//components/mus", | 31 "//components/mus", |
| 32 ] | 32 ] |
| 33 | 33 |
| 34 public_deps = [ | 34 public_deps = [ |
| 35 ":resources", | 35 ":resources", |
| 36 ] | 36 ] |
| 37 } | 37 } |
| 38 | 38 |
| 39 repack("resources") { | 39 repack("resources") { |
| 40 sources = [ | 40 sources = [ |
| 41 "$root_gen_dir/ui/resources/ui_resources_100_percent.pak", | 41 "$root_gen_dir/ui/resources/ui_resources_100_percent.pak", |
| 42 "$root_gen_dir/ui/strings/app_locale_settings_en-US.pak", | 42 "$root_gen_dir/ui/strings/app_locale_settings_en-US.pak", |
| 43 "$root_gen_dir/ui/strings/ui_strings_en-US.pak", | 43 "$root_gen_dir/ui/strings/ui_strings_en-US.pak", |
| 44 "$root_gen_dir/ui/views/resources/views_resources_100_percent.pak", | 44 "$root_gen_dir/ui/views/resources/views_resources_100_percent.pak", |
| 45 ] | 45 ] |
| 46 output = "$root_out_dir/example_resources.pak" | 46 output = "$root_out_dir/example_resources.pak" |
| 47 deps = [ | 47 deps = [ |
| 48 "//ui/strings", | 48 "//ui/strings", |
| 49 "//ui/resources", | 49 "//ui/resources", |
| 50 "//ui/views/resources", | 50 "//ui/views/resources", |
| 51 ] | 51 ] |
| 52 } | 52 } |
| OLD | NEW |