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

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

Issue 941153003: Add dart_invoke to tonic for calls into App code. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: cr comments Created 5 years, 10 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 | « sky/engine/core/script/dart_controller.cc ('k') | sky/engine/tonic/dart_invoke.h » ('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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 source_set("tonic") { 5 source_set("tonic") {
6 sources = [ 6 sources = [
7 "dart_api_scope.h", 7 "dart_api_scope.h",
8 "dart_builtin.cc", 8 "dart_builtin.cc",
9 "dart_builtin.h", 9 "dart_builtin.h",
10 "dart_class_library.cc", 10 "dart_class_library.cc",
11 "dart_class_library.h", 11 "dart_class_library.h",
12 "dart_class_provider.cc", 12 "dart_class_provider.cc",
13 "dart_class_provider.h", 13 "dart_class_provider.h",
14 "dart_converter.cc", 14 "dart_converter.cc",
15 "dart_converter.h", 15 "dart_converter.h",
16 "dart_error.cc", 16 "dart_error.cc",
17 "dart_error.h", 17 "dart_error.h",
18 "dart_exception_factory.cc", 18 "dart_exception_factory.cc",
19 "dart_exception_factory.h", 19 "dart_exception_factory.h",
20 "dart_gc_context.cc", 20 "dart_gc_context.cc",
21 "dart_gc_context.h", 21 "dart_gc_context.h",
22 "dart_gc_controller.cc", 22 "dart_gc_controller.cc",
23 "dart_gc_controller.h", 23 "dart_gc_controller.h",
24 "dart_gc_visitor.cc", 24 "dart_gc_visitor.cc",
25 "dart_gc_visitor.h", 25 "dart_gc_visitor.h",
26 "dart_invoke.cc",
27 "dart_invoke.h",
26 "dart_isolate_scope.cc", 28 "dart_isolate_scope.cc",
27 "dart_isolate_scope.h", 29 "dart_isolate_scope.h",
28 "dart_persistent_value.cc", 30 "dart_persistent_value.cc",
29 "dart_persistent_value.h", 31 "dart_persistent_value.h",
30 "dart_state.cc", 32 "dart_state.cc",
31 "dart_state.h", 33 "dart_state.h",
32 "dart_string.cc", 34 "dart_string.cc",
33 "dart_string.h", 35 "dart_string.h",
34 "dart_string_cache.cc", 36 "dart_string_cache.cc",
35 "dart_string_cache.h", 37 "dart_string_cache.h",
36 "dart_value.cc", 38 "dart_value.cc",
37 "dart_value.h", 39 "dart_value.h",
38 "dart_wrappable.cc", 40 "dart_wrappable.cc",
39 "dart_wrappable.h", 41 "dart_wrappable.h",
40 "dart_wrapper_info.h", 42 "dart_wrapper_info.h",
41 "mojo_converter.h", 43 "mojo_converter.h",
42 ] 44 ]
43 45
44 deps = [ 46 deps = [
45 "//base", 47 "//base",
46 "//mojo/public/cpp/system", 48 "//mojo/public/cpp/system",
47 "//sky/engine/wtf", 49 "//sky/engine/wtf",
48 ] 50 ]
49 51
50 public_deps = [ 52 public_deps = [
51 "//dart/runtime/bin:libdart_withcore", 53 "//dart/runtime/bin:libdart_withcore",
52 ] 54 ]
53 } 55 }
OLDNEW
« no previous file with comments | « sky/engine/core/script/dart_controller.cc ('k') | sky/engine/tonic/dart_invoke.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698