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

Side by Side Diff: build/config/BUILDCONFIG.gn

Issue 2280533004: Add a GN build configuration for controlling stack frame generation. (Closed)
Patch Set: Created 4 years, 3 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 | build/config/compiler/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) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 # ============================================================================= 5 # =============================================================================
6 # WHAT IS THIS FILE? 6 # WHAT IS THIS FILE?
7 # ============================================================================= 7 # =============================================================================
8 # 8 #
9 # This is the master GN build configuration. This file is loaded after the 9 # This is the master GN build configuration. This file is loaded after the
10 # build args (args.gn) for the build directory and after the toplevel ".gn" 10 # build args (args.gn) for the build directory and after the toplevel ".gn"
(...skipping 455 matching lines...) Expand 10 before | Expand all | Expand 10 after
466 466
467 # Holds all configs used for running the compiler. 467 # Holds all configs used for running the compiler.
468 default_compiler_configs = [ 468 default_compiler_configs = [
469 "//build/config:feature_flags", 469 "//build/config:feature_flags",
470 "//build/config/compiler:compiler", 470 "//build/config/compiler:compiler",
471 "//build/config/compiler:clang_stackrealign", 471 "//build/config/compiler:clang_stackrealign",
472 "//build/config/compiler:compiler_arm_fpu", 472 "//build/config/compiler:compiler_arm_fpu",
473 "//build/config/compiler:chromium_code", 473 "//build/config/compiler:chromium_code",
474 "//build/config/compiler:default_include_dirs", 474 "//build/config/compiler:default_include_dirs",
475 "//build/config/compiler:default_optimization", 475 "//build/config/compiler:default_optimization",
476 "//build/config/compiler:default_stack_frames",
476 "//build/config/compiler:default_symbols", 477 "//build/config/compiler:default_symbols",
477 "//build/config/compiler:no_rtti", 478 "//build/config/compiler:no_rtti",
478 "//build/config/compiler:runtime_library", 479 "//build/config/compiler:runtime_library",
479 "//build/config/sanitizers:default_sanitizer_flags", 480 "//build/config/sanitizers:default_sanitizer_flags",
480 ] 481 ]
481 if (is_win) { 482 if (is_win) {
482 default_compiler_configs += [ 483 default_compiler_configs += [
483 "//build/config/win:lean_and_mean", 484 "//build/config/win:lean_and_mean",
484 "//build/config/win:nominmax", 485 "//build/config/win:nominmax",
485 "//build/config/win:unicode", 486 "//build/config/win:unicode",
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
639 set_defaults("component") { 640 set_defaults("component") {
640 if (is_component_build) { 641 if (is_component_build) {
641 configs = default_shared_library_configs 642 configs = default_shared_library_configs
642 if (is_android) { 643 if (is_android) {
643 configs -= [ "//build/config/android:hide_native_jni_exports" ] 644 configs -= [ "//build/config/android:hide_native_jni_exports" ]
644 } 645 }
645 } else { 646 } else {
646 configs = default_compiler_configs 647 configs = default_compiler_configs
647 } 648 }
648 } 649 }
OLDNEW
« no previous file with comments | « no previous file | build/config/compiler/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698