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", |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 "float32_list.h", | 56 "float32_list.h", |
57 "mojo_converter.h", | 57 "mojo_converter.h", |
58 ] | 58 ] |
59 | 59 |
60 deps = [ | 60 deps = [ |
61 "//base", | 61 "//base", |
62 "//build/config/sanitizers:deps", | 62 "//build/config/sanitizers:deps", |
63 "//mojo/data_pipe_utils", | 63 "//mojo/data_pipe_utils", |
64 "//mojo/message_pump", | 64 "//mojo/message_pump", |
65 "//mojo/public/cpp/system", | 65 "//mojo/public/cpp/system", |
66 "//mojo/services/network/public/interfaces", | 66 "//mojo/services/network/interfaces", |
67 "//url", | 67 "//url", |
68 ] | 68 ] |
69 | 69 |
70 public_deps = [ | 70 public_deps = [ |
71 "//dart/runtime:libdart", | 71 "//dart/runtime:libdart", |
72 "//dart/runtime/vm:libdart_platform", | 72 "//dart/runtime/vm:libdart_platform", |
73 ] | 73 ] |
74 | 74 |
75 public_configs = [ ":tonic_config" ] | 75 public_configs = [ ":tonic_config" ] |
76 } | 76 } |
(...skipping 19 matching lines...) Expand all Loading... |
96 "//base", | 96 "//base", |
97 "//mojo/common", | 97 "//mojo/common", |
98 "//mojo/public/cpp/system", | 98 "//mojo/public/cpp/system", |
99 ] | 99 ] |
100 | 100 |
101 public_deps = [ | 101 public_deps = [ |
102 "//dart/runtime:libdart", | 102 "//dart/runtime:libdart", |
103 "//dart/runtime/vm:libdart_platform", | 103 "//dart/runtime/vm:libdart_platform", |
104 ] | 104 ] |
105 } | 105 } |
OLD | NEW |