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

Side by Side Diff: gpu/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: rebase 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 unified diff | Download patch
OLDNEW
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 # GYP-to-GN project mappings: 5 # GYP-to-GN project mappings:
6 # 6 #
7 # gpu.gyp:command_buffer_client => //gpu/command_buffer/client 7 # gpu.gyp:command_buffer_client => //gpu/command_buffer/client
8 # 8 #
9 # gpu.gyp:command_buffer_common => //gpu/command_buffer/common 9 # gpu.gyp:command_buffer_common => //gpu/command_buffer/common
10 # 10 #
(...skipping 29 matching lines...) Expand all
40 40
41 component("gpu") { 41 component("gpu") {
42 public_deps = [ 42 public_deps = [
43 "//gpu/command_buffer/client:client_sources", 43 "//gpu/command_buffer/client:client_sources",
44 "//gpu/command_buffer/client:gles2_cmd_helper_sources", 44 "//gpu/command_buffer/client:gles2_cmd_helper_sources",
45 "//gpu/command_buffer/common:common_sources", 45 "//gpu/command_buffer/common:common_sources",
46 "//gpu/command_buffer/service:service_sources", 46 "//gpu/command_buffer/service:service_sources",
47 "//gpu/config:config_sources", 47 "//gpu/config:config_sources",
48 "//gpu/ipc/client:ipc_client_sources", 48 "//gpu/ipc/client:ipc_client_sources",
49 "//gpu/ipc/common:ipc_common_sources", 49 "//gpu/ipc/common:ipc_common_sources",
50 "//gpu/ipc/service:ipc_service_sources",
50 ] 51 ]
51 } 52 }
52 53
53 # GYP version: //gpu/gpu.gyp:command_buffer_gles2 54 # GYP version: //gpu/gpu.gyp:command_buffer_gles2
54 shared_library("command_buffer_gles2") { 55 shared_library("command_buffer_gles2") {
55 sources = [ 56 sources = [
56 # TODO(hendrikw): Move egl out of gles2_conform_support. 57 # TODO(hendrikw): Move egl out of gles2_conform_support.
57 "gles2_conform_support/egl/config.cc", 58 "gles2_conform_support/egl/config.cc",
58 "gles2_conform_support/egl/config.h", 59 "gles2_conform_support/egl/config.h",
59 "gles2_conform_support/egl/display.cc", 60 "gles2_conform_support/egl/display.cc",
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after
359 "//base", 360 "//base",
360 "//base/test:test_support", 361 "//base/test:test_support",
361 "//gpu/command_buffer/service", 362 "//gpu/command_buffer/service",
362 "//testing/gmock", 363 "//testing/gmock",
363 "//testing/gtest", 364 "//testing/gtest",
364 "//testing/perf", 365 "//testing/perf",
365 "//ui/gfx/geometry", 366 "//ui/gfx/geometry",
366 "//ui/gl", 367 "//ui/gl",
367 ] 368 ]
368 } 369 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698