Index: components/mus/gles2/BUILD.gn |
diff --git a/components/mus/gles2/BUILD.gn b/components/mus/gles2/BUILD.gn |
deleted file mode 100644 |
index 57ef1b28d839896d0bb88796d79b37bc2685a200..0000000000000000000000000000000000000000 |
--- a/components/mus/gles2/BUILD.gn |
+++ /dev/null |
@@ -1,89 +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") |
- |
-source_set("gles2") { |
- visibility = [ |
- "//components/mus:*", |
- "//components/mus/ws:*", |
- "//components/mus/surfaces:*", |
- "//services/shell/standalone:lib", # For android |
- ] |
- |
- sources = [ |
- "command_buffer_driver.cc", |
- "command_buffer_driver.h", |
- "command_buffer_driver_manager.cc", |
- "command_buffer_driver_manager.h", |
- "command_buffer_impl.cc", |
- "command_buffer_impl.h", |
- "command_buffer_local.cc", |
- "command_buffer_local.h", |
- "command_buffer_local_client.h", |
- "command_buffer_task_runner.cc", |
- "command_buffer_task_runner.h", |
- "gl_surface_adapter.cc", |
- "gl_surface_adapter.h", |
- "gpu_impl.cc", |
- "gpu_impl.h", |
- "gpu_memory_tracker.cc", |
- "gpu_memory_tracker.h", |
- "gpu_state.cc", |
- "gpu_state.h", |
- ] |
- |
- public_deps = [ |
- ":lib", |
- ] |
- deps = [ |
- "//base", |
- "//components/mus/common:mus_common", |
- "//components/mus/public/interfaces", |
- "//gpu/command_buffer/client", |
- "//gpu/command_buffer/client:gles2_interface", |
- "//gpu/command_buffer/common:gles2_utils", |
- "//gpu/command_buffer/service", |
- "//gpu/config:config", |
- "//mojo/public/cpp/bindings", |
- "//mojo/public/cpp/system", |
- "//ui/gfx", |
- "//ui/gfx/geometry", |
- "//ui/gfx/geometry/mojo", |
- "//ui/gl", |
- "//ui/gl/init", |
- ] |
- |
- if (use_ozone) { |
- deps += [ "//ui/ozone:ozone" ] |
- sources += [ |
- "ozone_gpu_memory_buffer.cc", |
- "ozone_gpu_memory_buffer.h", |
- ] |
- } |
- |
- include_dirs = [ "../.." ] |
-} |
- |
-source_set("lib") { |
- sources = [ |
- "raster_thread_helper.cc", |
- "raster_thread_helper.h", |
- ] |
- |
- deps = [ |
- "//base", |
- "//cc", |
- "//components/mus/public/interfaces", |
- "//gpu/command_buffer/client", |
- "//gpu/command_buffer/common", |
- "//gpu/config:config", |
- "//mojo/public/cpp/bindings", |
- "//mojo/public/cpp/system", |
- "//ui/gfx", |
- "//ui/gfx/geometry", |
- ] |
- |
- include_dirs = [ "../.." ] |
-} |