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

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

Issue 1157263003: Add vector_math and box2d as external Dart packages (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 6 months 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 | « build/ls.py ('k') | mojo/dart/third_party/BUILD.gn » ('j') | 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 # 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",
(...skipping 28 matching lines...) Expand all
39 39
40 deps = [ 40 deps = [
41 ":dart_embedder_packages", 41 ":dart_embedder_packages",
42 ":generate_dart_embedder_patch_resources_cc", 42 ":generate_dart_embedder_patch_resources_cc",
43 ":generate_dart_embedder_service_isolate_resources_cc", 43 ":generate_dart_embedder_service_isolate_resources_cc",
44 "//base", 44 "//base",
45 "//base:i18n", 45 "//base:i18n",
46 "//crypto", 46 "//crypto",
47 "//dart/runtime:libdart", 47 "//dart/runtime:libdart",
48 "//dart/runtime/bin:libdart_embedder_noio", 48 "//dart/runtime/bin:libdart_embedder_noio",
49 "//mojo/dart/third_party",
abarth-chromium 2015/06/02 17:01:11 Maybe move to //third_party/dart-pkg ?
Cutch 2015/06/02 20:47:42 Done.
49 "//mojo/public/c/system", 50 "//mojo/public/c/system",
50 "//mojo/public/cpp/system", 51 "//mojo/public/cpp/system",
51 ] 52 ]
52 53
53 defines = [] 54 defines = []
54 if (is_debug) { 55 if (is_debug) {
55 defines += [ "DEBUG" ] 56 defines += [ "DEBUG" ]
56 } else { 57 } else {
57 defines += [ "NDEBUG" ] 58 defines += [ "NDEBUG" ]
58 } 59 }
(...skipping 344 matching lines...) Expand 10 before | Expand all | Expand 10 after
403 "--vm_input_bin", 404 "--vm_input_bin",
404 rebase_path("$target_gen_dir/vm_isolate_snapshot.bin"), 405 rebase_path("$target_gen_dir/vm_isolate_snapshot.bin"),
405 "--input_bin", 406 "--input_bin",
406 rebase_path("$target_gen_dir/isolate_snapshot.bin"), 407 rebase_path("$target_gen_dir/isolate_snapshot.bin"),
407 "--input_cc", 408 "--input_cc",
408 rebase_path("//mojo/dart/embedder/snapshot.cc.tmpl"), 409 rebase_path("//mojo/dart/embedder/snapshot.cc.tmpl"),
409 "--output", 410 "--output",
410 rebase_path(output), 411 rebase_path(output),
411 ] 412 ]
412 } 413 }
OLDNEW
« no previous file with comments | « build/ls.py ('k') | mojo/dart/third_party/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698