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

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

Issue 2533293002: github.com/flutter/engine changes required to use kernel
Patch Set: Created 4 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
« no previous file with comments | « DEPS ('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
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("//flutter/common/config.gni") 5 import("//flutter/common/config.gni")
6 import("//flutter/sky/engine/core/core.gni") 6 import("//flutter/sky/engine/core/core.gni")
7 7
8 visibility = [ "//flutter/sky/engine/*", "//flutter/sky/shell/*" ] 8 visibility = [ "//flutter/sky/engine/*", "//flutter/sky/shell/*" ]
9 9
10 static_library("core") { 10 static_library("core") {
11 output_name = "sky_core" 11 output_name = "sky_core"
12 12
13 deps = [ 13 deps = [
14 "//dart/runtime:libdart", 14 "//dart/runtime:libdart",
15 "//dart/runtime/bin:embedded_dart_io", 15 "//dart/runtime/bin:embedded_dart_io",
16 "//dart/runtime/vm:libdart_platform", 16 "//dart/runtime/vm:libdart_platform",
17 "//dart/runtime/vm:patched_sdk",
17 "//flutter/assets", 18 "//flutter/assets",
18 "//flutter/sky/engine/platform", 19 "//flutter/sky/engine/platform",
19 ] 20 ]
20 21
21 if (flutter_runtime_mode != "release" && !is_fuchsia) { 22 if (flutter_runtime_mode != "release" && !is_fuchsia) {
22 # Only include observatory assets in non-release modes. 23 # Only include observatory assets in non-release modes.
23 deps += [ 24 deps += [
24 "//dart/runtime/observatory:embedded_observatory_archive", 25 "//dart/runtime/observatory:embedded_observatory_archive",
25 ] 26 ]
26 } 27 }
(...skipping 28 matching lines...) Expand all
55 "//lib/tonic/debugger", 56 "//lib/tonic/debugger",
56 ] 57 ]
57 } 58 }
58 59
59 if (is_android) { 60 if (is_android) {
60 public_deps += [ 61 public_deps += [
61 "//flutter/lib/jni", 62 "//flutter/lib/jni",
62 ] 63 ]
63 } 64 }
64 } 65 }
OLDNEW
« no previous file with comments | « DEPS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698