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

Side by Side Diff: sky/engine/BUILD.gn

Issue 773283006: Run gn format on all BUILD.gn files (gn version 306668) (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years 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 2014 The Chromium Authors. All rights reserved. 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 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 import("config.gni") 5 import("config.gni")
6 if (is_clang) { 6 if (is_clang) {
7 import("//build/config/clang/clang.gni") 7 import("//build/config/clang/clang.gni")
8 } 8 }
9 if (is_posix) { 9 if (is_posix) {
10 import("//build/config/gcc/gcc_version.gni") 10 import("//build/config/gcc/gcc_version.gni")
11 } 11 }
12 12
13 visibility = ["//sky/*"] 13 visibility = [ "//sky/*" ]
14 14
15 # features --------------------------------------------------------------------- 15 # features ---------------------------------------------------------------------
16 16
17 config("features") { 17 config("features") {
18 defines = feature_defines_list 18 defines = feature_defines_list
19 } 19 }
20 20
21 # inside_blink ----------------------------------------------------------------- 21 # inside_blink -----------------------------------------------------------------
22 22
23 config("inside_blink") { 23 config("inside_blink") {
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 cflags += [ "-Wglobal-constructors" ] 73 cflags += [ "-Wglobal-constructors" ]
74 } 74 }
75 } 75 }
76 76
77 group("engine") { 77 group("engine") {
78 deps = [ 78 deps = [
79 "//sky/engine/web", 79 "//sky/engine/web",
80 "//sky/engine/platform", 80 "//sky/engine/platform",
81 ] 81 ]
82 } 82 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698