summaryrefslogtreecommitdiff
path: root/chromium/gpu/ipc/BUILD.gn
blob: c418f423f54c06d3b4845ee128f2424e5014cda7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# 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("//build/config/ui.gni")

component("gl_in_process_context") {
  sources = [
    "command_buffer_task_executor.cc",
    "command_buffer_task_executor.h",
    "display_compositor_memory_and_task_controller_on_gpu.cc",
    "display_compositor_memory_and_task_controller_on_gpu.h",
    "gl_in_process_context.cc",
    "gl_in_process_context.h",
    "gl_in_process_context_export.h",
    "gpu_in_process_thread_service.cc",
    "gpu_in_process_thread_service.h",
    "gpu_task_scheduler_helper.cc",
    "gpu_task_scheduler_helper.h",
    "in_process_command_buffer.cc",
    "in_process_command_buffer.h",
    "scheduler_sequence.cc",
    "scheduler_sequence.h",
    "shared_image_interface_in_process.cc",
    "shared_image_interface_in_process.h",
    "single_task_sequence.h",
  ]

  defines = [ "GL_IN_PROCESS_CONTEXT_IMPLEMENTATION" ]

  deps = [
    "//base",
    "//base/third_party/dynamic_annotations",

    # crbug.com/799267: crash_key needs to be added explicitly for Windows and
    # Mac even though it's not directly referenced, because it's being
    # implicitly depended upon by gpu/config/gpu_crash_keys.h but deps (even
    # public ones) are not transitive for static libraries.
    "//components/crash/core/common:crash_key",
    "//gpu/command_buffer/client",
    "//gpu/command_buffer/client:gles2_cmd_helper",
    "//gpu/command_buffer/client:gles2_implementation",
    "//gpu/command_buffer/client:raster",
    "//gpu/command_buffer/common",
    "//gpu/command_buffer/service",
    "//gpu/command_buffer/service:gles2",
    "//gpu/config",
    "//gpu/ipc/client",
    "//gpu/ipc/common",
    "//gpu/ipc/common:surface_handle_type",
    "//gpu/ipc/host",
    "//gpu/ipc/service",
    "//gpu/skia_bindings:skia_bindings",
    "//ui/gfx",
    "//ui/gfx/geometry",
    "//ui/gl",
    "//ui/gl/init",
  ]

  if (use_ozone) {
    deps += [ "//ui/ozone" ]
  }
}

component("gpu_thread_holder") {
  testonly = true

  sources = [
    "in_process_gpu_thread_holder.cc",
    "in_process_gpu_thread_holder.h",
    "test_gpu_thread_holder.cc",
    "test_gpu_thread_holder.h",
  ]

  defines = [ "IS_GPU_THREAD_HOLDER_IMPL" ]

  public_deps = [ "//gpu/config" ]

  deps = [
    ":gl_in_process_context",
    "//base",
    "//gpu/command_buffer/service",
    "//gpu/command_buffer/service:gles2",
    "//gpu/ipc/service",
  ]
}