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 source_set("cpp") { | 5 source_set("cpp") { |
6 sources = [ | 6 sources = [ |
7 "context_provider.h", | 7 "context_provider.h", |
8 "event_matcher.h", | 8 "event_matcher.h", |
9 "lib/context_provider.cc", | 9 "lib/context_provider.cc", |
10 "lib/event_matcher.cc", | 10 "lib/event_matcher.cc", |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 "//mojo/public/cpp/bindings:bindings", | 58 "//mojo/public/cpp/bindings:bindings", |
59 "//mojo/public/cpp/environment", | 59 "//mojo/public/cpp/environment", |
60 "//mojo/public/cpp/system", | 60 "//mojo/public/cpp/system", |
61 "//ui/gfx/geometry", | 61 "//ui/gfx/geometry", |
62 "//ui/mojo/geometry:interfaces", | 62 "//ui/mojo/geometry:interfaces", |
63 ] | 63 ] |
64 | 64 |
65 data_deps = [ | 65 data_deps = [ |
66 "//components/mus", | 66 "//components/mus", |
67 ] | 67 ] |
| 68 |
| 69 if (is_component_build) { |
| 70 deps += [ "//mojo/gles2" ] |
| 71 } |
68 } | 72 } |
OLD | NEW |