Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(458)

Unified Diff: services/ui/public/cpp/BUILD.gn

Issue 2232793002: services/ui: Move cc::SoftwareOutputDevice implementation into the client lib. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « services/ui/demo/BUILD.gn ('k') | services/ui/public/cpp/bitmap_uploader.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/ui/public/cpp/BUILD.gn
diff --git a/services/ui/public/cpp/BUILD.gn b/services/ui/public/cpp/BUILD.gn
index a4a14d7ec47e85b94104b15c592307c315a011c7..b8be781253674e7ba2961215da0bca58e15f181a 100644
--- a/services/ui/public/cpp/BUILD.gn
+++ b/services/ui/public/cpp/BUILD.gn
@@ -6,12 +6,12 @@
# implementation (and private haders) are in 'internal'.
source_set("cpp") {
sources = [
- "bitmap_uploader.h",
"input_event_handler.h",
"output_surface.h",
"property_type_converters.h",
"raster_thread_helper.h",
"scoped_window_ptr.h",
+ "software_output_device.h",
"window.h",
"window_manager_delegate.h",
"window_observer.h",
@@ -85,10 +85,14 @@ source_set("internal_or_test") {
source_set("internal") {
# This target is an implementation detail and is intended only to be used by
# the 'cpp' target.
- visibility = [ ":cpp" ]
+ visibility = [
+ ":cpp",
+ "//services/ui/demo:mus_demo_library",
sky 2016/08/10 15:10:39 Why do we want to move bitmap_uploader to internal
sadrul 2016/08/10 15:44:01 I have been thinking about it myself since I sent
+ ]
sources = [
"bitmap_uploader.cc",
+ "bitmap_uploader.h",
"command_buffer_client_impl.cc",
"command_buffer_client_impl.h",
"context_provider.cc",
@@ -101,6 +105,7 @@ source_set("internal") {
"property_type_converters.cc",
"raster_thread_helper.cc",
"scoped_window_ptr.cc",
+ "software_output_device.cc",
"window.cc",
"window_manager_delegate.cc",
"window_observer.cc",
« no previous file with comments | « services/ui/demo/BUILD.gn ('k') | services/ui/public/cpp/bitmap_uploader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698