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

Side by Side Diff: mojo/dart/embedder/BUILD.gn

Issue 1417523003: Move implementation of dart:mojo.internal to mojo/public/platform/dart (Closed) Base URL: git@github.com:domokit/mojo.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
« no previous file with comments | « no previous file | mojo/dart/embedder/builtin.cc » ('j') | mojo/public/platform/dart/BUILD.gn » ('J')
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 # embedder specific template rules. 5 # embedder specific template rules.
6 import("embedder.gni") 6 import("embedder.gni")
7 7
8 source_set("dart_controller_no_snapshot") { 8 source_set("dart_controller_no_snapshot") {
9 sources = [ 9 sources = [
10 "$target_gen_dir/dart_embedder_patch_resources.cc", 10 "$target_gen_dir/dart_embedder_patch_resources.cc",
11 "$target_gen_dir/dart_embedder_service_isolate_resources.cc", 11 "$target_gen_dir/dart_embedder_service_isolate_resources.cc",
12 "builtin.cc", 12 "builtin.cc",
13 "builtin.h", 13 "builtin.h",
14 "builtin_natives.cc", 14 "builtin_natives.cc",
15 "common.cc", 15 "common.cc",
16 "common.h", 16 "common.h",
17 "dart_controller.cc", 17 "dart_controller.cc",
18 "dart_controller.h", 18 "dart_controller.h",
19 "io/internet_address.h", 19 "io/internet_address.h",
20 "io/internet_address_posix.cc", 20 "io/internet_address_posix.cc",
21 "mojo_dart_state.h", 21 "mojo_dart_state.h",
22 "mojo_io_natives.cc", 22 "mojo_io_natives.cc",
23 "mojo_io_natives.h", 23 "mojo_io_natives.h",
24 "mojo_natives.cc",
25 "mojo_natives.h",
26 "vmservice.cc", 24 "vmservice.cc",
27 "vmservice.h", 25 "vmservice.h",
28 ] 26 ]
29 27
30 deps = [ 28 deps = [
31 ":dart_embedder_packages", 29 ":dart_embedder_packages",
32 ":generate_dart_embedder_patch_resources_cc", 30 ":generate_dart_embedder_patch_resources_cc",
33 ":generate_dart_embedder_service_isolate_resources_cc", 31 ":generate_dart_embedder_service_isolate_resources_cc",
34 "//base", 32 "//base",
35 "//base:i18n", 33 "//base:i18n",
36 "//dart/runtime:libdart", 34 "//dart/runtime:libdart",
37 "//dart/runtime/observatory:embedded_observatory_archive", 35 "//dart/runtime/observatory:embedded_observatory_archive",
38 "//dart/runtime/bin:libdart_embedder_noio", 36 "//dart/runtime/bin:libdart_embedder_noio",
39 "//mojo/message_pump", 37 "//mojo/message_pump",
40 "//mojo/public/c/system", 38 "//mojo/public/c/system",
41 "//mojo/public/cpp/environment", 39 "//mojo/public/cpp/environment",
42 "//mojo/public/cpp/system", 40 "//mojo/public/cpp/system",
41 "//mojo/public/platform/dart:mojo_internal_impl",
43 "//mojo/services/network/interfaces", 42 "//mojo/services/network/interfaces",
44 "//tonic", 43 "//tonic",
45 ] 44 ]
46 45
47 defines = [] 46 defines = []
48 if (is_debug) { 47 if (is_debug) {
49 defines += [ "DEBUG" ] 48 defines += [ "DEBUG" ]
50 } else { 49 } else {
51 defines += [ "NDEBUG" ] 50 defines += [ "NDEBUG" ]
52 } 51 }
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 265
267 source_set("dart_snapshot_cc") { 266 source_set("dart_snapshot_cc") {
268 sources = [ 267 sources = [
269 "$root_gen_dir/dart_snapshot.cc", 268 "$root_gen_dir/dart_snapshot.cc",
270 ] 269 ]
271 270
272 deps = [ 271 deps = [
273 ":generate_snapshot_file", 272 ":generate_snapshot_file",
274 ] 273 ]
275 } 274 }
OLDNEW
« no previous file with comments | « no previous file | mojo/dart/embedder/builtin.cc » ('j') | mojo/public/platform/dart/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698