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