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

Unified Diff: chrome/chrome_exe.gypi

Issue 8770054: Tool to log the execution of Chrome. Initial add. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years 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 side-by-side diff with in-line comments
Download patch
Index: chrome/chrome_exe.gypi
diff --git a/chrome/chrome_exe.gypi b/chrome/chrome_exe.gypi
index 9d7819c51990386af1377b20cd78ee80a0d1d51f..dcb5781cb07ee34776e2517f8a6a6bfad1956d06 100644
--- a/chrome/chrome_exe.gypi
+++ b/chrome/chrome_exe.gypi
@@ -42,6 +42,19 @@
'INFOPLIST_FILE': 'app/app-Info.plist',
},
'conditions': [
+ ['order_profiling!=0 and (chromeos==1 or OS=="linux")', {
+ 'dependencies' : [
+ '../base/cygprofile/cygprofile.gyp:cygprofile',
+ ],
+ }],
+ ['order_text_section!="" and (chromeos==1 or OS=="linux")', {
+ 'target_conditions' : [
+ ['_toolset=="target"', {
+ 'ldflags': [
+ '-Wl,-section-ordering-file=<(order_text_section)' ],
+ }],
+ ]
+ }], # order_text_section!=0
['OS == "android"', {
# Don't put the 'chrome' target in 'all' on android
'suppress_wildcard': 1,

Powered by Google App Engine
This is Rietveld 408576698