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