 Chromium Code Reviews
 Chromium Code Reviews Issue 2406083002:
  Crazylinker: remove the code to load component build library  (Closed)
    
  
    Issue 2406083002:
  Crazylinker: remove the code to load component build library  (Closed) 
  | 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 causes instrumentation to return incorrect results. | 
| 11 # As component build has stopped working for a long time, some code is broken | |
| 12 # and needs to cleanup. See crbug.com/657093. | |
| 
Torne
2016/10/26 10:27:44
nit: this comment is hard to understand; it sounds
 
michaelbai
2016/10/26 20:35:51
Done.
 | |
| 11 chromium_linker_supported = | 13 chromium_linker_supported = | 
| 12 !is_component_build && !enable_profiling && !use_order_profiling && !is_asan | 14 !is_component_build && !enable_profiling && !use_order_profiling && !is_asan | 
| OLD | NEW |