summaryrefslogtreecommitdiffstats
path: root/components/bitmap_uploader/BUILD.gn
blob: c9d2862256cbf7e47288756b6939a4b831cf3ab2 (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
# Copyright 2015 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.

component("bitmap_uploader") {
  sources = [
    "bitmap_uploader.cc",
    "bitmap_uploader.h",
  ]

  defines = [
    "BITMAP_UPLOADER_IMPLEMENTATION",
    "GL_GLEXT_PROTOTYPES",
  ]

  deps = [
    "//base",
    "//components/mus/public/cpp",
    "//components/mus/public/interfaces",
    "//gpu",
    "//mojo/application/public/cpp",
    "//mojo/application/public/interfaces",
    "//mojo/converters/surfaces",
    "//mojo/public/c/gles2",
    "//mojo/public/c/system:for_component",
  ]
}