OLD | NEW |
---|---|
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_float32list.cc", | |
21 "dart_float32list.h", | |
abarth-chromium
2015/06/04 17:29:27
We can just call these float32_list.cc and float32
Matt Perry
2015/06/04 17:34:35
Done.
| |
20 "dart_gc_context.cc", | 22 "dart_gc_context.cc", |
21 "dart_gc_context.h", | 23 "dart_gc_context.h", |
22 "dart_gc_controller.cc", | 24 "dart_gc_controller.cc", |
23 "dart_gc_controller.h", | 25 "dart_gc_controller.h", |
24 "dart_gc_visitor.cc", | 26 "dart_gc_visitor.cc", |
25 "dart_gc_visitor.h", | 27 "dart_gc_visitor.h", |
26 "dart_invoke.cc", | 28 "dart_invoke.cc", |
27 "dart_invoke.h", | 29 "dart_invoke.h", |
28 "dart_isolate_scope.cc", | 30 "dart_isolate_scope.cc", |
29 "dart_isolate_scope.h", | 31 "dart_isolate_scope.h", |
(...skipping 19 matching lines...) Expand all Loading... | |
49 "//base", | 51 "//base", |
50 "//mojo/public/cpp/system", | 52 "//mojo/public/cpp/system", |
51 "//sky/engine/wtf", | 53 "//sky/engine/wtf", |
52 ] | 54 ] |
53 | 55 |
54 public_deps = [ | 56 public_deps = [ |
55 "//dart/runtime:libdart", | 57 "//dart/runtime:libdart", |
56 "//dart/runtime/vm:libdart_platform", | 58 "//dart/runtime/vm:libdart_platform", |
57 ] | 59 ] |
58 } | 60 } |
OLD | NEW |