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

Side by Side Diff: mojo/public/c/gpu/BUILD.gn

Issue 1464873002: Run gn --format over all .gn files (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 config("gpu_configs") { 5 config("gpu_configs") {
6 include_dirs = [ "." ] 6 include_dirs = [ "." ]
7 defines = [ "GLES2_USE_MOJO" ] 7 defines = [ "GLES2_USE_MOJO" ]
8 } 8 }
9 9
10 group("gpu") { 10 group("gpu") {
11 public_configs = [ ":gpu_configs" ] 11 public_configs = [ ":gpu_configs" ]
12 12
13 deps = [ 13 deps = [
14 ":MGL", 14 ":MGL",
15 "../../platform/native:gles2",
15 "../../platform/native:mgl_thunks", 16 "../../platform/native:mgl_thunks",
16 "../../platform/native:gles2",
17 ] 17 ]
18 } 18 }
19 19
20 group("gpu_onscreen") { 20 group("gpu_onscreen") {
21 public_deps = [ 21 public_deps = [
22 ":MGL_onscreen", 22 ":MGL_onscreen",
23 ] 23 ]
24 24
25 deps = [ 25 deps = [
26 ":gpu", 26 ":gpu",
(...skipping 14 matching lines...) Expand all
41 41
42 source_set("MGL_onscreen") { 42 source_set("MGL_onscreen") {
43 sources = [ 43 sources = [
44 "MGL/mgl_onscreen.h", 44 "MGL/mgl_onscreen.h",
45 ] 45 ]
46 46
47 public_deps = [ 47 public_deps = [
48 ":MGL", 48 ":MGL",
49 ] 49 ]
50 } 50 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698