Index: mojo/services/native_viewport/BUILD.gn |
diff --git a/mojo/services/native_viewport/BUILD.gn b/mojo/services/native_viewport/BUILD.gn |
deleted file mode 100644 |
index 856d3dafd93f7f80400b3ee666679ae1bea821a7..0000000000000000000000000000000000000000 |
--- a/mojo/services/native_viewport/BUILD.gn |
+++ /dev/null |
@@ -1,88 +0,0 @@ |
-# Copyright 2014 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("//build/config/ui.gni") |
- |
-if (!is_android) { |
- shared_library("native_viewport") { |
- output_name = "mojo_native_viewport_service" |
- |
- deps = [ |
- ":lib", |
- "//base", |
- "//mojo/application", |
- "//mojo/public/c/system:for_shared_library", |
- "//mojo/public/cpp/bindings:bindings", |
- "//mojo/services/public/interfaces/native_viewport", |
- "//mojo/services/public/cpp/native_viewport:args", |
- "//ui/gl", |
- ] |
- |
- sources = [ "main.cc" ] |
- } |
-} |
- |
-source_set("lib") { |
- deps = [ |
- "//base", |
- "//cc/surfaces", |
- "//gpu/command_buffer/service", |
- "//mojo/application", |
- "//mojo/common", |
- "//mojo/converters/geometry", |
- "//mojo/converters/input_events", |
- "//mojo/converters/surfaces", |
- "//mojo/environment:chromium", |
- "//mojo/services/gles2", |
- "//mojo/services/public/interfaces/geometry", |
- "//mojo/services/public/interfaces/gpu", |
- "//mojo/services/public/interfaces/native_viewport", |
- "//mojo/services/public/interfaces/surfaces", |
- "//ui/events", |
- "//ui/events/platform", |
- "//ui/gfx", |
- "//ui/gfx/geometry", |
- "//ui/gl", |
- "//ui/platform_window", |
- ] |
- |
- sources = [ |
- "gpu_impl.cc", |
- "gpu_impl.h", |
- "native_viewport_impl.cc", |
- "native_viewport_impl.h", |
- "platform_viewport.h", |
- "platform_viewport_android.cc", |
- "platform_viewport_android.h", |
- "platform_viewport_mac.mm", |
- "platform_viewport_headless.cc", |
- "platform_viewport_headless.h", |
- "platform_viewport_win.cc", |
- "viewport_surface.cc", |
- "viewport_surface.h", |
- ] |
- |
- libs = [] |
- |
- if (is_ios) { |
- sources += [ "platform_viewport_stub.cc" ] |
- } |
- |
- if (is_android) { |
- deps += [ "//mojo:jni_headers" ] |
- libs += [ "android" ] |
- } |
- |
- if (use_x11) { |
- sources += [ "platform_viewport_x11.cc" ] |
- deps += [ |
- "//ui/events/platform/x11", |
- "//ui/platform_window/x11", |
- ] |
- } |
- |
- if (use_ozone) { |
- sources += [ "platform_viewport_ozone.cc" ] |
- } |
-} |