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("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
6 | 6 |
7 # This is the public target. It contains only the public headers. The | 7 # This is the public target. It contains only the public headers. The |
8 # implementation (and private haders) are in 'internal'. | 8 # implementation (and private haders) are in 'internal'. |
9 source_set("cpp") { | 9 source_set("cpp") { |
10 sources = [ | 10 sources = [ |
11 "client_compositor_frame_sink.h", | 11 "client_compositor_frame_sink.h", |
12 "property_type_converters.h", | 12 "property_type_converters.h", |
13 "raster_thread_helper.h", | 13 "raster_thread_helper.h", |
14 ] | 14 ] |
15 | 15 |
16 public_deps = [ | 16 public_deps = [ |
17 "//base", | 17 "//base", |
18 "//cc", | 18 "//cc", |
19 "//cc/surfaces", | 19 "//cc/surfaces", |
20 "//cc/surfaces:surface_id", | 20 "//cc/surfaces:surface_id", |
21 "//mojo/public/cpp/bindings", | 21 "//mojo/public/cpp/bindings", |
22 "//services/service_manager/public/interfaces", | 22 "//services/service_manager/public/interfaces", |
23 "//services/ui/common:mus_common", | 23 "//services/ui/common:mus_common", |
24 "//services/ui/public/cpp/bitmap", | |
sky
2017/04/06 20:03:12
Do all users of services/ui/public need the bitmap
xlai (Olivia)
2017/04/06 20:42:26
This was a mistake. I've removed this line.
| |
24 "//services/ui/public/cpp/gpu", | 25 "//services/ui/public/cpp/gpu", |
25 "//services/ui/public/interfaces", | 26 "//services/ui/public/interfaces", |
26 ] | 27 ] |
27 | 28 |
28 deps = [ | 29 deps = [ |
29 ":internal", | 30 ":internal", |
30 "//gpu/command_buffer/client:gles2_cmd_helper", | 31 "//gpu/command_buffer/client:gles2_cmd_helper", |
31 "//gpu/command_buffer/client:gles2_interface", | 32 "//gpu/command_buffer/client:gles2_interface", |
32 "//services/service_manager/public/cpp", | 33 "//services/service_manager/public/cpp", |
33 "//services/ui/public/interfaces", | 34 "//services/ui/public/interfaces", |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
80 data_deps = [ | 81 data_deps = [ |
81 "//services/ui", | 82 "//services/ui", |
82 ] | 83 ] |
83 | 84 |
84 defines = [ "GL_GLEXT_PROTOTYPES" ] | 85 defines = [ "GL_GLEXT_PROTOTYPES" ] |
85 | 86 |
86 if (use_ozone) { | 87 if (use_ozone) { |
87 deps += [ "//ui/ozone" ] | 88 deps += [ "//ui/ozone" ] |
88 } | 89 } |
89 } | 90 } |
OLD | NEW |