| 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 import("//mojo/system.gni") | 5 import("//mojo/system.gni") |
| 6 | 6 |
| 7 # GYP version: mojo/mojo_services.gypi:mojo_view_manager_lib | 7 # GYP version: mojo/mojo_services.gypi:mojo_view_manager_lib |
| 8 source_set("view_manager") { | 8 source_set("view_manager") { |
| 9 sources = [ | 9 sources = [ |
| 10 "lib/bitmap_uploader.cc", | 10 "lib/bitmap_uploader.cc", |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 ":common", | 28 ":common", |
| 29 "//base", | 29 "//base", |
| 30 "//cc/surfaces", | 30 "//cc/surfaces", |
| 31 "//gpu", | 31 "//gpu", |
| 32 "//mojo/application", | 32 "//mojo/application", |
| 33 "//mojo/public/interfaces/application", | 33 "//mojo/public/interfaces/application", |
| 34 "//mojo/services/public/cpp/geometry", | 34 "//mojo/services/public/cpp/geometry", |
| 35 "//mojo/services/public/cpp/surfaces", | 35 "//mojo/services/public/cpp/surfaces", |
| 36 "//mojo/services/public/interfaces/geometry", | 36 "//mojo/services/public/interfaces/geometry", |
| 37 "//mojo/services/public/interfaces/gpu", | 37 "//mojo/services/public/interfaces/gpu", |
| 38 "//mojo/services/public/interfaces/native_viewport", |
| 39 "//mojo/services/public/interfaces/surfaces", |
| 38 "//mojo/services/public/interfaces/view_manager", | 40 "//mojo/services/public/interfaces/view_manager", |
| 39 "//mojo/services/public/interfaces/window_manager", | 41 "//mojo/services/public/interfaces/window_manager", |
| 40 "//skia", | 42 "//skia", |
| 41 "//ui/events", | 43 "//ui/events", |
| 42 "//ui/gfx", | 44 "//ui/gfx", |
| 43 "//ui/gfx/geometry", | 45 "//ui/gfx/geometry", |
| 44 ] + mojo_gles2_for_shared_library | 46 ] + mojo_gles2_for_shared_library |
| 45 | 47 |
| 46 forward_dependent_configs_from = [ "//skia" ] | 48 forward_dependent_configs_from = [ "//skia" ] |
| 47 } | 49 } |
| 48 | 50 |
| 49 source_set("common") { | 51 source_set("common") { |
| 50 sources = [ | 52 sources = [ |
| 51 "types.h" | 53 "types.h" |
| 52 ] | 54 ] |
| 53 } | 55 } |
| OLD | NEW |