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 # GYP version: mojo/mojo.gyp:mojo_aura_support |
6 source_set("aura") { | 6 source_set("aura") { |
7 sources = [ | 7 sources = [ |
8 "aura_init.cc", | 8 "aura_init.cc", |
9 "aura_init.h", | 9 "aura_init.h", |
10 "input_method_mandoline.cc", | 10 "input_method_mandoline.cc", |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 "//ui/aura", | 46 "//ui/aura", |
47 "//ui/compositor", | 47 "//ui/compositor", |
48 "//ui/events", | 48 "//ui/events", |
49 "//ui/events:events_base", | 49 "//ui/events:events_base", |
50 "//ui/gl", | 50 "//ui/gl", |
51 "//ui/mojo/ime:interfaces_cpp_sources", | 51 "//ui/mojo/ime:interfaces_cpp_sources", |
52 "//ui/mojo/init", | 52 "//ui/mojo/init", |
53 "//ui/views", | 53 "//ui/views", |
54 "//ui/wm", | 54 "//ui/wm", |
55 ] | 55 ] |
| 56 |
| 57 if (is_linux && !is_android) { |
| 58 deps += [ "//components/font_service/public/cpp" ] |
| 59 } |
56 } | 60 } |
OLD | NEW |