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

Side by Side Diff: ui/surface/BUILD.gn

Issue 282353002: Add GN build file for surface. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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 | Annotate | Revision Log
« BUILD.gn ('K') | « BUILD.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 import("//build/config/ui.gni")
6
7 component("surface") {
8 sources = [
9 "accelerated_surface_mac.cc",
10 "accelerated_surface_mac.h",
11 "surface_export.h",
12 "transport_dib.cc",
13 "transport_dib.h",
14 "transport_dib_posix.cc",
15 "transport_dib_win.cc",
16 ]
17
18 defines = [ "SURFACE_IMPLEMENTATION" ]
19
20 deps = [
21 "//base",
22 "//base/third_party/dynamic_annotations",
23 "//skia",
24 "//ui/base:ui_base",
25 "//ui/gfx/geometry",
26 "//ui/gl",
27 ]
28
29 if (use_x11) {
30 #'include_dirs': [
brettw 2014/05/16 16:57:04 Just do: include_dirs = [ "//third_party/khronos
tfarina 2014/05/16 21:24:34 Done.
31 #'../../third_party/khronos',
32 #],
33 }
34 }
OLDNEW
« BUILD.gn ('K') | « BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698