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

Side by Side Diff: runtime/BUILD.gn

Issue 1190103003: Remove dart_debugger_api.h (Closed) Base URL: git@github.com:dart-lang/sdk.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 | « no previous file | runtime/bin/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 (c) 2014, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
2 # for details. All rights reserved. Use of this source code is governed by a 2 # for details. All rights reserved. Use of this source code is governed by a
3 # BSD-style license that can be found in the LICENSE file. 3 # BSD-style license that can be found in the LICENSE file.
4 4
5 # TODO(zra): These build arguments should likely be moved to a gni file that is 5 # TODO(zra): These build arguments should likely be moved to a gni file that is
6 # included in BUILD.gn files that care about the values of the flags. For now, 6 # included in BUILD.gn files that care about the values of the flags. For now,
7 # since the GN build only happens as part of a Mojo build there is no need for 7 # since the GN build only happens as part of a Mojo build there is no need for
8 # the indirection. 8 # the indirection.
9 declare_args() { 9 declare_args() {
10 # Instead of using is_debug, we introduce a different flag for specifying a 10 # Instead of using is_debug, we introduce a different flag for specifying a
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 "vm:libdart_lib", 61 "vm:libdart_lib",
62 "vm:libdart_vm", 62 "vm:libdart_vm",
63 "third_party/double-conversion/src:libdouble_conversion", 63 "third_party/double-conversion/src:libdouble_conversion",
64 ":generate_version_cc_file", 64 ":generate_version_cc_file",
65 ] 65 ]
66 include_dirs = [ 66 include_dirs = [
67 ".", 67 ".",
68 ] 68 ]
69 sources = [ 69 sources = [
70 "include/dart_api.h", 70 "include/dart_api.h",
71 "include/dart_debugger_api.h",
72 "include/dart_mirrors_api.h", 71 "include/dart_mirrors_api.h",
73 "include/dart_native_api.h", 72 "include/dart_native_api.h",
73 "include/dart_tools_api.h",
74 "vm/dart_api_impl.cc", 74 "vm/dart_api_impl.cc",
75 "vm/debugger_api_impl.cc", 75 "vm/debugger_api_impl.cc",
76 "vm/mirrors_api_impl.cc", 76 "vm/mirrors_api_impl.cc",
77 "vm/native_api_impl.cc", 77 "vm/native_api_impl.cc",
78 "vm/version.h", 78 "vm/version.h",
79 "$target_gen_dir/version.cc", 79 "$target_gen_dir/version.cc",
80 ] 80 ]
81 defines = [ 81 defines = [
82 # Using DART_SHARED_LIB to export the Dart API entries. 82 # Using DART_SHARED_LIB to export the Dart API entries.
83 "DART_SHARED_LIB", 83 "DART_SHARED_LIB",
(...skipping 30 matching lines...) Expand all
114 "vm:libdart_lib_nosnapshot", 114 "vm:libdart_lib_nosnapshot",
115 "vm:libdart_lib", 115 "vm:libdart_lib",
116 "vm:libdart_vm", 116 "vm:libdart_vm",
117 "vm:libdart_platform", 117 "vm:libdart_platform",
118 "third_party/double-conversion/src:libdouble_conversion", 118 "third_party/double-conversion/src:libdouble_conversion",
119 ] 119 ]
120 sources = [ 120 sources = [
121 "vm/libdart_dependency_helper.cc", 121 "vm/libdart_dependency_helper.cc",
122 ] 122 ]
123 } 123 }
OLDNEW
« no previous file with comments | « no previous file | runtime/bin/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698