| 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 16 matching lines...) Expand all Loading... |
| 27 "//base", | 27 "//base", |
| 28 "//cc/surfaces", | 28 "//cc/surfaces", |
| 29 "//gpu", | 29 "//gpu", |
| 30 "//mojo/application", | 30 "//mojo/application", |
| 31 "//mojo/public/gles2:for_shared_library", | 31 "//mojo/public/gles2:for_shared_library", |
| 32 "//mojo/public/interfaces/application", | 32 "//mojo/public/interfaces/application", |
| 33 "//mojo/services/public/cpp/geometry", | 33 "//mojo/services/public/cpp/geometry", |
| 34 "//mojo/services/public/cpp/surfaces", | 34 "//mojo/services/public/cpp/surfaces", |
| 35 "//mojo/services/public/interfaces/geometry", | 35 "//mojo/services/public/interfaces/geometry", |
| 36 "//mojo/services/public/interfaces/gpu", | 36 "//mojo/services/public/interfaces/gpu", |
| 37 "//mojo/services/public/interfaces/native_viewport", | |
| 38 "//mojo/services/public/interfaces/surfaces", | |
| 39 "//mojo/services/public/interfaces/view_manager", | 37 "//mojo/services/public/interfaces/view_manager", |
| 40 "//mojo/services/public/interfaces/window_manager", | 38 "//mojo/services/public/interfaces/window_manager", |
| 41 "//skia", | 39 "//skia", |
| 42 "//ui/events", | 40 "//ui/events", |
| 43 "//ui/gfx", | 41 "//ui/gfx", |
| 44 "//ui/gfx/geometry", | 42 "//ui/gfx/geometry", |
| 45 ] | 43 ] |
| 46 | 44 |
| 47 forward_dependent_configs_from = [ "//skia" ] | 45 forward_dependent_configs_from = [ "//skia" ] |
| 48 } | 46 } |
| 49 | 47 |
| 50 source_set("common") { | 48 source_set("common") { |
| 51 sources = [ | 49 sources = [ |
| 52 "ids.h", | 50 "types.h" |
| 53 "types.h", | |
| 54 ] | 51 ] |
| 55 } | 52 } |
| OLD | NEW |