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

Unified Diff: gpu/ipc/service/BUILD.gn

Issue 1845563005: Refactor content/common/gpu into gpu/ipc/service (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Privatize gpu/command_buffer/service dep on gpu/command_buffer/common:common_sources Created 4 years, 8 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 | « gpu/gpu_ipc_service.gypi ('k') | gpu/ipc/service/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/ipc/service/BUILD.gn
diff --git a/gpu/ipc/service/BUILD.gn b/gpu/ipc/service/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..01c1b3daaf0c6e58abc34be2e08b3997e16ad139
--- /dev/null
+++ b/gpu/ipc/service/BUILD.gn
@@ -0,0 +1,175 @@
+# Copyright 2016 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import("//testing/test.gni")
+import("//build/config/ui.gni")
+if (is_mac) {
+ import("//build/config/mac/mac_sdk.gni")
+}
+
+group("service") {
+ if (is_component_build) {
+ public_deps = [
+ "//gpu",
+ ]
+ } else {
+ public_deps = [
+ ":ipc_service_sources",
+ ]
+ }
+}
+
+source_set("ipc_service_sources") {
+ visibility = [ "//gpu/*" ]
+ sources = [
+ "gpu_channel.cc",
+ "gpu_channel.h",
+ "gpu_channel_manager.cc",
+ "gpu_channel_manager.h",
+ "gpu_channel_manager_delegate.h",
+ "gpu_command_buffer_stub.cc",
+ "gpu_command_buffer_stub.h",
+ "gpu_config.h",
+ "gpu_memory_buffer_factory.cc",
+ "gpu_memory_buffer_factory.h",
+ "gpu_memory_manager.cc",
+ "gpu_memory_manager.h",
+ "gpu_memory_tracking.cc",
+ "gpu_memory_tracking.h",
+ "gpu_watchdog.h",
+ "image_transport_surface.h",
+ "pass_through_image_transport_surface.cc",
+ "pass_through_image_transport_surface.h",
+ ]
+ configs += [ "//gpu:gpu_implementation" ]
+ public_deps = [
+ "//base",
+ "//ipc",
+ "//ui/events:events_base",
+ "//ui/gfx",
+ "//ui/gfx/geometry",
+ "//ui/gl",
+ "//url",
+ ]
+ deps = [
+ "//gpu/command_buffer/common:common_sources",
+ "//gpu/command_buffer/service:service_sources",
+ "//gpu/ipc/common:ipc_common_sources",
+ ]
+ libs = []
+ if (is_win) {
+ sources += [
+ "child_window_surface_win.cc",
+ "child_window_surface_win.h",
+ "image_transport_surface_win.cc",
+ ]
+ }
+ if (is_mac) {
+ sources += [
+ "ca_layer_partial_damage_tree_mac.h",
+ "ca_layer_partial_damage_tree_mac.mm",
+ "ca_layer_tree_mac.h",
+ "ca_layer_tree_mac.mm",
+ "gpu_memory_buffer_factory_io_surface.cc",
+ "gpu_memory_buffer_factory_io_surface.h",
+ "image_transport_surface_mac.mm",
+ "image_transport_surface_overlay_mac.h",
+ "image_transport_surface_overlay_mac.mm",
+ ]
+ deps += [
+ "//skia",
+ "//ui/accelerated_widget_mac",
+ ]
+ lib_dirs = [ "$mac_sdk_path/usr/lib" ]
+ libs += [
+ "AVFoundation.framework",
+ "CoreMedia.framework",
+ "QuartzCore.framework",
+ ]
+ }
+ if (is_android) {
+ sources += [
+ "gpu_memory_buffer_factory_surface_texture.cc",
+ "gpu_memory_buffer_factory_surface_texture.h",
+ "image_transport_surface_android.cc",
+ "stream_texture_android.cc",
+ "stream_texture_android.h",
+ ]
+ libs += [ "android" ]
+ }
+ if (is_linux) {
+ sources += [ "image_transport_surface_linux.cc" ]
+ }
+ if (use_x11) {
+ sources += [ "x_util.h" ]
+ }
+ if (use_ozone) {
+ sources += [
+ "gpu_memory_buffer_factory_ozone_native_pixmap.cc",
+ "gpu_memory_buffer_factory_ozone_native_pixmap.h",
+ ]
+ deps += [ "//ui/ozone" ]
+ }
+}
+
+source_set("test_support") {
+ testonly = true
+ sources = [
+ "gpu_memory_buffer_factory_test_template.h",
+ ]
+ public_deps = [
+ ":service",
+ "//testing/gtest:gtest",
+ ]
+ deps = [
+ "//gpu/ipc/common:ipc_common_sources",
jbroman 2016/04/05 22:03:37 shouldn't this be //gpu/ipc/common?
Mark Dittmer 2016/04/06 00:51:53 Yes.
+ ]
+}
+
+test("gpu_ipc_service_unittests") {
+ configs += [ "//build/config:precompiled_headers" ]
+ sources = [
+ "gpu_channel_manager_unittest.cc",
+ "gpu_channel_test_common.cc",
+ "gpu_channel_test_common.h",
+ "gpu_channel_unittest.cc",
+ ]
+ deps = [
+ ":service",
+ ":test_support",
+ "//base",
+ "//base/test:run_all_unittests",
+ "//base/test:test_support",
+ "//gpu/command_buffer/common",
+ "//gpu/command_buffer/service",
+ "//gpu/config",
+ "//gpu/ipc/common",
+ "//ipc:test_support",
+ "//skia",
+ "//testing/gtest",
+ "//third_party/mesa:mesa_headers",
+ "//ui/gfx:test_support",
+ "//url",
+ ]
+ libs = []
+ if (is_android) {
+ sources += [ "gpu_memory_buffer_factory_surface_texture_unittest.cc" ]
+ }
+ if (is_mac) {
+ sources += [
+ "ca_layer_tree_unittest_mac.mm",
+ "gpu_memory_buffer_factory_io_surface_unittest.cc",
+ ]
+ deps += [ "//ui/accelerated_widget_mac" ]
+ libs += [
+ "AVFoundation.framework",
+ "CoreMedia.framework",
+ "QuartzCore.framework",
+ ]
+ }
+ if (use_ozone) {
+ sources += [ "gpu_memory_buffer_factory_ozone_native_pixmap_unittest.cc" ]
+ deps += [ "//ui/ozone" ]
+ }
+}
« no previous file with comments | « gpu/gpu_ipc_service.gypi ('k') | gpu/ipc/service/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698