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

Unified Diff: chrome/chrome_watcher/chrome_watcher.gypi

Issue 1844023002: Capture a report on failed browser rendez-vous. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: GYP fixup Created 4 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
« no previous file with comments | « chrome/chrome_watcher/BUILD.gn ('k') | chrome/chrome_watcher/chrome_watcher_main.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/chrome_watcher/chrome_watcher.gypi
diff --git a/chrome/chrome_watcher/chrome_watcher.gypi b/chrome/chrome_watcher/chrome_watcher.gypi
index ad051fc1d58ec614f5538ff1d435873963de80ba..422e88d1748e5cf2976fdeb47248f503e09a357c 100644
--- a/chrome/chrome_watcher/chrome_watcher.gypi
+++ b/chrome/chrome_watcher/chrome_watcher.gypi
@@ -9,6 +9,39 @@
'../../build/util/version.gypi',
'../../build/win_precompile.gypi',
],
+ 'conditions': [
+ ['kasko==1', {
+ 'targets': [
+ {
+ 'target_name': 'kasko_util',
+ 'type': 'static_library',
+ 'sources': [
+ 'kasko_util.cc',
+ 'kasko_util.h',
+ ],
+ 'dependencies': [
+ 'chrome_watcher_client',
+ '../base/base.gyp:base',
+ '../third_party/kasko/kasko.gyp:kasko',
+ '../components/components.gyp:crash_component'
+ ],
+ 'export_dependent_settings': [
+ '../third_party/kasko/kasko.gyp:kasko',
+ ],
+ },
+ ],
+ }, { # 'kasko==0'
+ 'targets': [
+ {
+ 'target_name': 'kasko_util',
+ 'type': 'none',
+ 'dependencies': [
+ '../third_party/kasko/kasko.gyp:kasko_features',
+ ],
+ },
+ ],
+ }],
+ ], # 'conditions'
'targets': [
{
'target_name': 'chrome_watcher_resources',
@@ -61,11 +94,10 @@
'dependencies': [
'chrome_watcher_client',
'chrome_watcher_resources',
+ 'kasko_util',
'installer_util',
'../base/base.gyp:base',
'../components/components.gyp:browser_watcher',
- '../third_party/kasko/kasko.gyp:kasko',
- '../components/components.gyp:crash_component'
],
'msvs_settings': {
'VCLinkerTool': {
« no previous file with comments | « chrome/chrome_watcher/BUILD.gn ('k') | chrome/chrome_watcher/chrome_watcher_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698