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

Unified Diff: chrome/tools/crash_service/caps/caps.gyp

Issue 861413003: skeleton GYP for CAPS (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 5 years, 11 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 | « build/all.gyp ('k') | chrome/tools/crash_service/caps/caps.ver » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/tools/crash_service/caps/caps.gyp
diff --git a/chrome/tools/crash_service/caps/caps.gyp b/chrome/tools/crash_service/caps/caps.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..f18f84d6c4413d06a4429b0986a92883daa933fd
--- /dev/null
+++ b/chrome/tools/crash_service/caps/caps.gyp
@@ -0,0 +1,59 @@
+# Copyright 2015 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+{
+ 'variables': {
+ 'chromium_code': 1,
+ },
+ 'includes': [
+ '../../../../build/util/version.gypi',
+ '../../../../build/win_precompile.gypi',
+ ],
+ 'targets': [
+ {
+ 'target_name': 'caps_resources',
+ 'type': 'none',
+ 'conditions': [
+ ['branding == "Chrome"', {
+ 'variables': {
+ 'branding_path': '../../../app/theme/google_chrome/BRANDING',
+ },
+ }, { # else branding!="Chrome"
+ 'variables': {
+ 'branding_path': '../../../app/theme/chromium/BRANDING',
+ },
+ }],
+ ],
+ 'variables': {
+ 'output_dir': 'caps',
+ 'template_input_path': '../../../app/chrome_version.rc.version',
+ },
+ 'sources': [
+ 'caps.ver',
+ ],
+ 'includes': [
+ '../../../version_resource_rules.gypi',
+ ],
+ },
+ {
+ 'target_name': 'caps',
+ 'type': 'executable',
+ 'include_dirs': [
+ '../..',
+ ],
+ 'sources': [
+ 'main_win.cc',
+ '<(SHARED_INTERMEDIATE_DIR)/caps/caps_version.rc',
+ ],
+ 'dependencies': [
+ 'caps_resources',
+ ],
+ 'msvs_settings': {
+ 'VCLinkerTool': {
+ # Set /SUBSYSTEM:WINDOWS.
+ 'SubSystem': '2',
+ },
+ },
+ },
+ ],
+}
« no previous file with comments | « build/all.gyp ('k') | chrome/tools/crash_service/caps/caps.ver » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698