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 source_set("cpp") { | 5 source_set("cpp") { |
6 sources = [ | 6 sources = [ |
7 "resource_loader.cc", | 7 "font_loader.cc", |
8 "resource_loader.h", | 8 "font_loader.h", |
| 9 "font_service_thread.cc", |
| 10 "font_service_thread.h", |
| 11 "mapped_font_file.cc", |
| 12 "mapped_font_file.h", |
9 ] | 13 ] |
10 | 14 |
11 deps = [ | 15 deps = [ |
12 "../interfaces", | 16 "../interfaces", |
13 "//base", | 17 "//base", |
14 "//mojo/application/public/cpp", | 18 "//mojo/application/public/cpp", |
15 "//mojo/application/public/interfaces", | 19 "//mojo/application/public/interfaces", |
16 "//mojo/common", | 20 "//mojo/common", |
| 21 "//mojo/message_pump", |
17 "//mojo/platform_handle", | 22 "//mojo/platform_handle", |
| 23 "//skia", |
18 "//third_party/mojo/src/mojo/public/cpp/bindings", | 24 "//third_party/mojo/src/mojo/public/cpp/bindings", |
19 "//third_party/mojo/src/mojo/public/cpp/system", | 25 "//third_party/mojo/src/mojo/public/cpp/system", |
20 ] | 26 ] |
21 } | 27 } |
OLD | NEW |