| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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/public/mojo_application.gni") | 5 import("//mojo/public/mojo_application.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 source_set("common") { | 8 source_set("common") { |
| 9 sources = [ | 9 sources = [ |
| 10 "backend/gpu_output.cc", | 10 "backend/gpu_output.cc", |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 "scene_state.cc", | 53 "scene_state.cc", |
| 54 "scene_state.h", | 54 "scene_state.h", |
| 55 ] | 55 ] |
| 56 | 56 |
| 57 public_deps = [ | 57 public_deps = [ |
| 58 "//base", | 58 "//base", |
| 59 "//mojo/application", | 59 "//mojo/application", |
| 60 "//mojo/common:tracing_impl", | 60 "//mojo/common:tracing_impl", |
| 61 "//mojo/converters/geometry", | 61 "//mojo/converters/geometry", |
| 62 "//mojo/gpu", | 62 "//mojo/gpu", |
| 63 "//mojo/public/c/gpu", | 63 "//mojo/public/c:gpu", |
| 64 "//mojo/public/cpp/bindings:bindings", | 64 "//mojo/public/cpp/bindings:bindings", |
| 65 "//mojo/services/geometry/cpp", | 65 "//mojo/services/geometry/cpp", |
| 66 "//mojo/services/geometry/interfaces", | 66 "//mojo/services/geometry/interfaces", |
| 67 "//mojo/services/gfx/composition/cpp", | 67 "//mojo/services/gfx/composition/cpp", |
| 68 "//mojo/services/gfx/composition/interfaces", | 68 "//mojo/services/gfx/composition/interfaces", |
| 69 "//mojo/services/gpu/interfaces", | 69 "//mojo/services/gpu/interfaces", |
| 70 "//mojo/skia", | 70 "//mojo/skia", |
| 71 "//skia", | 71 "//skia", |
| 72 ] | 72 ] |
| 73 } | 73 } |
| (...skipping 23 matching lines...) Expand all Loading... |
| 97 | 97 |
| 98 deps = [ | 98 deps = [ |
| 99 ":common", | 99 ":common", |
| 100 "//base/test:test_support", | 100 "//base/test:test_support", |
| 101 "//mojo/application:test_support", | 101 "//mojo/application:test_support", |
| 102 "//mojo/services/gfx/composition/interfaces:interfaces_sync", | 102 "//mojo/services/gfx/composition/interfaces:interfaces_sync", |
| 103 "//mojo/services/native_viewport/interfaces", | 103 "//mojo/services/native_viewport/interfaces", |
| 104 "//testing/gtest", | 104 "//testing/gtest", |
| 105 ] | 105 ] |
| 106 } | 106 } |
| OLD | NEW |