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

Side by Side Diff: BUILD.gn

Issue 2932053004: Stubbed out linking on Fuchsia (Closed)
Patch Set: Created 3 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 | src/base/debug/stack_trace_fuchsia.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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//build/config/android/config.gni") 5 import("//build/config/android/config.gni")
6 import("//build/config/arm.gni") 6 import("//build/config/arm.gni")
7 import("//build/config/dcheck_always_on.gni") 7 import("//build/config/dcheck_always_on.gni")
8 import("//build/config/host_byteorder.gni") 8 import("//build/config/host_byteorder.gni")
9 import("//build/config/mips.gni") 9 import("//build/config/mips.gni")
10 import("//build/config/sanitizers/sanitizers.gni") 10 import("//build/config/sanitizers/sanitizers.gni")
(...skipping 2578 matching lines...) Expand 10 before | Expand all | Expand 10 after
2589 "src/base/debug/stack_trace_posix.cc", 2589 "src/base/debug/stack_trace_posix.cc",
2590 "src/base/platform/platform-linux.cc", 2590 "src/base/platform/platform-linux.cc",
2591 ] 2591 ]
2592 } 2592 }
2593 } else { 2593 } else {
2594 sources += [ 2594 sources += [
2595 "src/base/debug/stack_trace_android.cc", 2595 "src/base/debug/stack_trace_android.cc",
2596 "src/base/platform/platform-linux.cc", 2596 "src/base/platform/platform-linux.cc",
2597 ] 2597 ]
2598 } 2598 }
2599 } else if (is_fuchsia) {
2600 sources += [
2601 "src/base/debug/stack_trace_fuchsia.cc",
2602 "src/base/platform/platform-fuchsia.cc",
2603 ]
2599 } else if (is_mac) { 2604 } else if (is_mac) {
2600 sources += [ 2605 sources += [
2601 "src/base/debug/stack_trace_posix.cc", 2606 "src/base/debug/stack_trace_posix.cc",
2602 "src/base/platform/platform-macos.cc", 2607 "src/base/platform/platform-macos.cc",
2603 ] 2608 ]
2604 } else if (is_win) { 2609 } else if (is_win) {
2605 # TODO(jochen): Add support for cygwin. 2610 # TODO(jochen): Add support for cygwin.
2606 sources += [ 2611 sources += [
2607 "src/base/debug/stack_trace_win.cc", 2612 "src/base/debug/stack_trace_win.cc",
2608 "src/base/platform/platform-win32.cc", 2613 "src/base/platform/platform-win32.cc",
(...skipping 720 matching lines...) Expand 10 before | Expand all | Expand 10 after
3329 ] 3334 ]
3330 3335
3331 configs = [ 3336 configs = [
3332 ":external_config", 3337 ":external_config",
3333 ":internal_config_base", 3338 ":internal_config_base",
3334 ] 3339 ]
3335 } 3340 }
3336 3341
3337 v8_fuzzer("wasm_compile_fuzzer") { 3342 v8_fuzzer("wasm_compile_fuzzer") {
3338 } 3343 }
OLDNEW
« no previous file with comments | « no previous file | src/base/debug/stack_trace_fuchsia.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698