blob: 3aade974f22d6a7dcd1ef0c355a8feea94566735 (
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/converters/surfaces",
"//mojo/public/c/gles2",
"//mojo/public/c/system:for_component",
"//mojo/shell/public/cpp",
"//mojo/shell/public/interfaces",
]
}
|