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