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 common_deps = [ | 5 common_deps = [ |
6 "//base", | 6 "//base", |
7 "//base:i18n", | 7 "//base:i18n", |
8 "//build/config/sanitizers:deps", | 8 "//build/config/sanitizers:deps", |
9 "//dart/runtime:libdart", | 9 "//dart/runtime:libdart", |
10 "//mojo/common", | 10 "//mojo/common", |
(...skipping 26 matching lines...) Expand all Loading... |
37 "gpu_delegate.cc", | 37 "gpu_delegate.cc", |
38 "gpu_delegate.h", | 38 "gpu_delegate.h", |
39 "platform_view.cc", | 39 "platform_view.cc", |
40 "platform_view.h", | 40 "platform_view.h", |
41 "service_provider.cc", | 41 "service_provider.cc", |
42 "service_provider.h", | 42 "service_provider.h", |
43 "shell.cc", | 43 "shell.cc", |
44 "shell.h", | 44 "shell.h", |
45 "shell_view.cc", | 45 "shell_view.cc", |
46 "shell_view.h", | 46 "shell_view.h", |
| 47 "switches.cc", |
| 48 "switches.h", |
47 "ui/animator.cc", | 49 "ui/animator.cc", |
48 "ui/animator.h", | 50 "ui/animator.h", |
49 "ui/engine.cc", | 51 "ui/engine.cc", |
50 "ui/engine.h", | 52 "ui/engine.h", |
51 "ui/input_event_converter.cc", | 53 "ui/input_event_converter.cc", |
52 "ui/input_event_converter.h", | 54 "ui/input_event_converter.h", |
53 "ui/internals.cc", | 55 "ui/internals.cc", |
54 "ui/internals.h", | 56 "ui/internals.h", |
55 "ui_delegate.cc", | 57 "ui_delegate.cc", |
56 "ui_delegate.h", | 58 "ui_delegate.h", |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
179 "linux/main.cc", | 181 "linux/main.cc", |
180 "linux/platform_service_provider_linux.cc", | 182 "linux/platform_service_provider_linux.cc", |
181 "linux/platform_view_linux.cc", | 183 "linux/platform_view_linux.cc", |
182 ] | 184 ] |
183 | 185 |
184 deps = common_deps + [ ":common" ] | 186 deps = common_deps + [ ":common" ] |
185 } | 187 } |
186 } else { | 188 } else { |
187 assert(false, "Unsupported platform") | 189 assert(false, "Unsupported platform") |
188 } | 190 } |
OLD | NEW |