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

Side by Side Diff: runtime/bin/BUILD.gn

Issue 1174343006: Landing https://codereview.chromium.org/1171223003/ for Chinmay. (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/file_system_watcher_macos.cc » ('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 5
6 declare_args() { 6 declare_args() {
7 dart_io_support = false 7 dart_io_support = false
8 } 8 }
9 9
10 10
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 "*secure_socket.cc", 201 "*secure_socket.cc",
202 "*secure_socket.h", 202 "*secure_socket.h",
203 "*filter_unsupported.cc", 203 "*filter_unsupported.cc",
204 "*io_service_unsupported.cc", 204 "*io_service_unsupported.cc",
205 "*_test.cc", 205 "*_test.cc",
206 "*_test.h", 206 "*_test.h",
207 "*dbg*", 207 "*dbg*",
208 "builtin.cc", 208 "builtin.cc",
209 "builtin_gen_snapshot.cc", 209 "builtin_gen_snapshot.cc",
210 ] 210 ]
211 if (!is_mac) { 211 if (!is_mac && !is_ios) {
212 # Dart tree uses *_macos.* instead of *_mac.* 212 # Dart tree uses *_macos.* instead of *_mac.*
213 custom_sources_filter += [ 213 custom_sources_filter += [
214 "*_macos.h", 214 "*_macos.h",
215 "*_macos.cc", 215 "*_macos.cc",
216 ] 216 ]
217 } 217 }
218 set_sources_assignment_filter(custom_sources_filter) 218 set_sources_assignment_filter(custom_sources_filter)
219 219
220 defines = [ "DART_IO_SECURE_SOCKET_DISABLED" ] 220 defines = [ "DART_IO_SECURE_SOCKET_DISABLED" ]
221 221
(...skipping 10 matching lines...) Expand all
232 "log_macos.cc", 232 "log_macos.cc",
233 "log_win.cc", 233 "log_win.cc",
234 "log.h", 234 "log.h",
235 ] 235 ]
236 236
237 include_dirs = [ 237 include_dirs = [
238 "..", 238 "..",
239 "//third_party" 239 "//third_party"
240 ] 240 ]
241 } 241 }
OLDNEW
« no previous file with comments | « no previous file | runtime/bin/file_system_watcher_macos.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698