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

Side by Side Diff: remoting/client/opengl_renderer/BUILD.gn

Issue 2045963004: [Remoting] OpenGL Rendering Layer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: sort of fix build error Created 4 years, 5 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
(Empty)
1 # Copyright 2016 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 source_set("opengl_renderer") {
Yuwei 2016/07/13 00:37:43 Not sure what's the best way to stop build-all to
Sergey Ulanov 2016/07/13 04:42:11 You can just wrap it in if (is_android || is_ios)
Yuwei 2016/07/13 18:14:16 Done.
6 sources = [
7 "../gl_canvas.cc",
8 "../gl_canvas.h",
9 "../gl_desktop.cc",
10 "../gl_desktop.h",
11 "../gl_helpers.cc",
12 "../gl_helpers.h",
13 "../gl_render_layer.cc",
14 "../gl_render_layer.h",
15 ]
16
17 deps = [
18 "//third_party/webrtc",
19 ]
20
21 configs += [ "//third_party/khronos:khronos_headers" ]
22 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698