| 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 # GYP version: mojo/mojo_services.gypi:mojo_view_manager_lib | 5 # GYP version: mojo/mojo_services.gypi:mojo_view_manager_lib |
| 6 source_set("view_manager") { | 6 source_set("view_manager") { |
| 7 sources = [ | 7 sources = [ |
| 8 "lib/bitmap_uploader.cc", | 8 "lib/bitmap_uploader.cc", |
| 9 "lib/bitmap_uploader.h", | 9 "lib/bitmap_uploader.h", |
| 10 "lib/view.cc", | 10 "lib/view.cc", |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 "//gpu", | 32 "//gpu", |
| 33 "//mojo/application", | 33 "//mojo/application", |
| 34 "//mojo/public/cpp/bindings:bindings", | 34 "//mojo/public/cpp/bindings:bindings", |
| 35 "//mojo/public/gles2:for_shared_library", | 35 "//mojo/public/gles2:for_shared_library", |
| 36 "//mojo/public/interfaces/application", | 36 "//mojo/public/interfaces/application", |
| 37 "//mojo/services/public/cpp/geometry", | 37 "//mojo/services/public/cpp/geometry", |
| 38 "//mojo/services/public/cpp/surfaces", | 38 "//mojo/services/public/cpp/surfaces", |
| 39 "//mojo/services/public/interfaces/geometry", | 39 "//mojo/services/public/interfaces/geometry", |
| 40 "//mojo/services/public/interfaces/gpu", | 40 "//mojo/services/public/interfaces/gpu", |
| 41 "//mojo/services/public/interfaces/input_events:input_events", | 41 "//mojo/services/public/interfaces/input_events:input_events", |
| 42 "//mojo/services/public/interfaces/native_viewport", |
| 42 "//mojo/services/public/interfaces/surfaces:surface_id", | 43 "//mojo/services/public/interfaces/surfaces:surface_id", |
| 43 "//mojo/services/public/interfaces/surfaces:surfaces", | 44 "//mojo/services/public/interfaces/surfaces", |
| 44 "//mojo/services/public/interfaces/view_manager", | 45 "//mojo/services/public/interfaces/view_manager", |
| 45 "//mojo/services/public/interfaces/window_manager", | 46 "//mojo/services/public/interfaces/window_manager", |
| 46 "//skia", | 47 "//skia", |
| 47 "//ui/events", | 48 "//ui/events", |
| 48 "//ui/gfx", | 49 "//ui/gfx", |
| 49 "//ui/gfx/geometry", | 50 "//ui/gfx/geometry", |
| 50 ] | 51 ] |
| 51 } | 52 } |
| 52 | 53 |
| 53 source_set("common") { | 54 source_set("common") { |
| 54 sources = [ | 55 sources = [ |
| 55 "types.h" | 56 "ids.h", |
| 57 "types.h", |
| 56 ] | 58 ] |
| 57 public_deps = [ | 59 public_deps = [ |
| 58 "//base", | 60 "//base", |
| 59 ] | 61 ] |
| 60 } | 62 } |
| OLD | NEW |