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 # GYP version: mojo/mojo.gyp:mojo_aura_support | 5 source_set("mus") { |
6 source_set("aura") { | |
7 sources = [ | 6 sources = [ |
8 "aura_init.cc", | 7 "aura_init.cc", |
9 "aura_init.h", | 8 "aura_init.h", |
10 "input_method_mandoline.cc", | 9 "input_method_mus.cc", |
11 "input_method_mandoline.h", | 10 "input_method_mus.h", |
12 "native_widget_view_manager.cc", | 11 "native_widget_view_manager.cc", |
13 "native_widget_view_manager.h", | 12 "native_widget_view_manager.h", |
14 "surface_binding.cc", | 13 "surface_binding.cc", |
15 "surface_binding.h", | 14 "surface_binding.h", |
16 "surface_context_factory.cc", | 15 "surface_context_factory.cc", |
17 "surface_context_factory.h", | 16 "surface_context_factory.h", |
18 "window_tree_host_mojo.cc", | 17 "window_tree_host_mus.cc", |
19 "window_tree_host_mojo.h", | 18 "window_tree_host_mus.h", |
20 ] | 19 ] |
21 | 20 |
22 public_deps = [ | 21 public_deps = [ |
23 "//components/mus/public/cpp", | 22 "//components/mus/public/cpp", |
24 ] | 23 ] |
25 deps = [ | 24 deps = [ |
26 "//base", | 25 "//base", |
27 "//base:i18n", | 26 "//base:i18n", |
28 "//base/third_party/dynamic_annotations", | 27 "//base/third_party/dynamic_annotations", |
29 "//cc", | 28 "//cc", |
(...skipping 25 matching lines...) Expand all Loading... |
55 | 54 |
56 data_deps = [ | 55 data_deps = [ |
57 "//components/resource_provider", | 56 "//components/resource_provider", |
58 ] | 57 ] |
59 | 58 |
60 if (is_linux && !is_android) { | 59 if (is_linux && !is_android) { |
61 deps += [ "//components/font_service/public/cpp" ] | 60 deps += [ "//components/font_service/public/cpp" ] |
62 data_deps += [ "//components/font_service" ] | 61 data_deps += [ "//components/font_service" ] |
63 } | 62 } |
64 } | 63 } |
OLD | NEW |