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

Unified Diff: chrome/chrome_tests.gypi

Issue 1103793002: Add support for escaped target names in isolate driver. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix sync and ui targets as well Created 5 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: chrome/chrome_tests.gypi
diff --git a/chrome/chrome_tests.gypi b/chrome/chrome_tests.gypi
index e5f2f75c07a772d700b2c0fdea07d6da852a5ac4..c36897f7de1ba97abf9e6ca97010d7526ba36771 100644
--- a/chrome/chrome_tests.gypi
+++ b/chrome/chrome_tests.gypi
@@ -3065,6 +3065,11 @@
'../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
],
}],
+ ['OS=="mac"', {
+ 'dependencies': [
+ 'chrome_main_dll',
Nico 2015/05/04 16:08:11 This should be unnecessary because chrome should d
+ ],
+ }],
],
},
{
@@ -3079,6 +3084,11 @@
'../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
],
}],
+ ['OS=="mac"', {
+ 'dependencies': [
+ 'chrome_main_dll',
Nico 2015/05/04 16:08:11 likewise
+ ],
+ }],
],
'includes': [
'../build/isolate.gypi',
@@ -3099,6 +3109,11 @@
'../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
],
}],
+ ['OS=="mac"', {
+ 'dependencies': [
+ 'chrome_main_dll',
+ ],
+ }],
],
'includes': [
'../build/isolate.gypi',

Powered by Google App Engine
This is Rietveld 408576698