| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |