OLD | NEW |
---|---|
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/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
7 import("//build/config/sanitizers/sanitizers.gni") | 7 import("//build/config/sanitizers/sanitizers.gni") |
8 | 8 |
9 # Chromium linker crashes on component builds on Android 4.4. See b/11379966 | 9 # Chromium linker crashes on component builds on Android 4.4. See b/11379966 |
10 # Chromium linker causes instrumentation to return incorrect results. | 10 # Chromium linker doesn't reliably support loading multiple libraries; |
Torne
2016/11/01 13:35:51
This is still replacing the wrong comment. We want
Torne
2016/11/02 09:57:15
What I expected the comments to say:
# Chromium l
michaelbai
2016/11/02 15:36:43
In this way, b/11379966 is dropped, you think it i
| |
11 # disable for component builds, see crbug.com/657093. | |
11 chromium_linker_supported = | 12 chromium_linker_supported = |
12 !is_component_build && !enable_profiling && !use_order_profiling && !is_asan | 13 !is_component_build && !enable_profiling && !use_order_profiling && !is_asan |
OLD | NEW |