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

Side by Side Diff: chrome/app/framework.order

Issue 581983003: Enable ASan default options on Mac. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Moved the dependency to target_defaults Created 6 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 | « chrome/app/chrome_exe_main_mac.cc ('k') | 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) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 # This .order file defines the order that symbols should be laid out in the 5 # This .order file defines the order that symbols should be laid out in the
6 # Mac framework. The framework does not contain many global text symbols, and 6 # Mac framework. The framework does not contain many global text symbols, and
7 # in release mode, does not contain any non-global text symbols after being 7 # in release mode, does not contain any non-global text symbols after being
8 # stripped. In order to avoid symbolization of stripped binaries from showing 8 # stripped. In order to avoid symbolization of stripped binaries from showing
9 # confusing offsets from the few public symbols that are available, an 9 # confusing offsets from the few public symbols that are available, an
10 # easily-recognized symbol, _ChromeMain, is placed last among global text 10 # easily-recognized symbol, _ChromeMain, is placed last among global text
(...skipping 28 matching lines...) Expand all
39 ___gcov_write_summary 39 ___gcov_write_summary
40 ___gcov_read_counter 40 ___gcov_read_counter
41 ___gcov_read_unsigned 41 ___gcov_read_unsigned
42 ___gcov_read_summary 42 ___gcov_read_summary
43 ___gcov_close 43 ___gcov_close
44 ___gcov_open 44 ___gcov_open
45 ___gcov_flush 45 ___gcov_flush
46 ___gcov_merge_add 46 ___gcov_merge_add
47 ___gcov_fork 47 ___gcov_fork
48 48
49 # Provided by build/sanitizers/sanitizer_options.cc in ASan builds.
50 ___asan_default_options
51
49 # Written in asm as a .globl. (Is that necessary?) 52 # Written in asm as a .globl. (Is that necessary?)
50 _NaClSwitch 53 _NaClSwitch
51 _NaClSyscallSeg 54 _NaClSyscallSeg
52 55
53 # Entry point from the app mode loader. 56 # Entry point from the app mode loader.
54 _ChromeAppModeStart 57 _ChromeAppModeStart
55 58
56 # _ChromeMain must be listed last. That's the whole point of this file. 59 # _ChromeMain must be listed last. That's the whole point of this file.
57 _ChromeMain 60 _ChromeMain
OLDNEW
« no previous file with comments | « chrome/app/chrome_exe_main_mac.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698