OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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("//mojo/public/tools/bindings/mojom.gni") |
8 import("//tools/grit/repack.gni") | 8 import("//tools/grit/repack.gni") |
9 | 9 |
10 mojo_native_application("main") { | 10 mojo_native_application("main") { |
11 output_name = "example_main" | 11 output_name = "example_main" |
12 testonly = true | 12 testonly = true |
13 | 13 |
14 sources = [ | 14 sources = [ |
15 "main.cc", | 15 "main.cc", |
16 "main_application_delegate.cc", | 16 "main_application_delegate.cc", |
17 "main_application_delegate.h", | 17 "main_application_delegate.h", |
18 ] | 18 ] |
19 | 19 |
20 deps = [ | 20 deps = [ |
21 "//base", | 21 "//base", |
22 "//mojo/application/public/cpp", | 22 "//mojo/application/public/cpp", |
23 "//mojo/application/public/cpp:sources", | 23 "//mojo/application/public/cpp:sources", |
24 "//third_party/mojo/src/mojo/public/cpp/bindings", | 24 "//mojo/public/cpp/bindings", |
25 ] | 25 ] |
26 | 26 |
27 data_deps = [ | 27 data_deps = [ |
28 "//components/mus/example/views_examples", | 28 "//components/mus/example/views_examples", |
29 "//components/mus/example/window_type_launcher", | 29 "//components/mus/example/window_type_launcher", |
30 ] | 30 ] |
31 } | 31 } |
OLD | NEW |