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_util.h", | |
9 "input_event_handler.h", | 8 "input_event_handler.h", |
10 "lib/context_provider.cc", | 9 "lib/context_provider.cc", |
11 "lib/event_matcher_util.cc", | |
12 "lib/in_flight_change.cc", | 10 "lib/in_flight_change.cc", |
13 "lib/in_flight_change.h", | 11 "lib/in_flight_change.h", |
14 "lib/output_surface.cc", | 12 "lib/output_surface.cc", |
15 "lib/property_type_converters.cc", | 13 "lib/property_type_converters.cc", |
16 "lib/scoped_window_ptr.cc", | 14 "lib/scoped_window_ptr.cc", |
17 "lib/window.cc", | 15 "lib/window.cc", |
18 "lib/window_observer.cc", | 16 "lib/window_observer.cc", |
19 "lib/window_private.cc", | 17 "lib/window_private.cc", |
20 "lib/window_private.h", | 18 "lib/window_private.h", |
21 "lib/window_surface.cc", | 19 "lib/window_surface.cc", |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 ] | 62 ] |
65 | 63 |
66 data_deps = [ | 64 data_deps = [ |
67 "//components/mus", | 65 "//components/mus", |
68 ] | 66 ] |
69 | 67 |
70 if (is_component_build) { | 68 if (is_component_build) { |
71 deps += [ "//mojo/gles2" ] | 69 deps += [ "//mojo/gles2" ] |
72 } | 70 } |
73 } | 71 } |
OLD | NEW |