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

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

Issue 2167253003: Fix Flutter's Linux build (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 5 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 | no next file » | 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 # TODO(zra, jamesr): Remove this check once we start building boringssl for 9 # TODO(zra, jamesr): Remove this check once we start building boringssl for
10 # the fuchsia port. 10 # the fuchsia port.
(...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after
353 "io_natives.cc", 353 "io_natives.cc",
354 "io_natives.h", 354 "io_natives.h",
355 "embedded_dart_io.cc", 355 "embedded_dart_io.cc",
356 "embedded_dart_io.h", 356 "embedded_dart_io.h",
357 "log_android.cc", 357 "log_android.cc",
358 "log_linux.cc", 358 "log_linux.cc",
359 "log_macos.cc", 359 "log_macos.cc",
360 "log_win.cc", 360 "log_win.cc",
361 "log.h", 361 "log.h",
362 ] 362 ]
363 if (is_linux) {
364 sources += [ "../../third_party/root_certificates/root_certificates.cc"]
365 }
363 366
364 include_dirs = [ 367 include_dirs = [
365 "..", 368 "..",
366 "//third_party" 369 "//third_party"
367 ] 370 ]
368 } 371 }
369 } # !is_fuchsia 372 } # !is_fuchsia
370 373
371 374
372 action("generate_snapshot_bin") { 375 action("generate_snapshot_bin") {
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
457 "..", 460 "..",
458 "../include" 461 "../include"
459 ] 462 ]
460 463
461 deps = [ 464 deps = [
462 ":dart_snapshot_cc", 465 ":dart_snapshot_cc",
463 ":libdart_embedder_noio", 466 ":libdart_embedder_noio",
464 ] 467 ]
465 } 468 }
466 } 469 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698