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

Side by Side Diff: chrome/chrome_watcher/chrome_watcher.gypi

Issue 901673002: Instantiate a Kasko reporter inside the Chrome watcher process, when SyzyASAN instrumented. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ship_kasko
Patch Set: Fix a runtime error. Created 5 years, 10 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
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 'variables': { 5 'variables': {
6 'chromium_code': 1, 6 'chromium_code': 1,
7 }, 7 },
8 'includes': [ 8 'includes': [
9 '../../build/util/version.gypi', 9 '../../build/util/version.gypi',
10 '../../build/win_precompile.gypi', 10 '../../build/win_precompile.gypi',
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 ], 48 ],
49 }, 49 },
50 { 50 {
51 'target_name': 'chrome_watcher', 51 'target_name': 'chrome_watcher',
52 'type': 'loadable_module', 52 'type': 'loadable_module',
53 'include_dirs': [ 53 'include_dirs': [
54 '../..', 54 '../..',
55 ], 55 ],
56 'sources': [ 56 'sources': [
57 'chrome_watcher.def', 57 'chrome_watcher.def',
58 'chrome_watcher_main.cc', 58 'chrome_watcher_main.cc',
grt (UTC plus 2) 2015/02/05 19:45:29 this file includes syzygy/kasko/api/reporter.h, ye
59 '<(SHARED_INTERMEDIATE_DIR)/chrome_watcher/chrome_watcher_version.rc', 59 '<(SHARED_INTERMEDIATE_DIR)/chrome_watcher/chrome_watcher_version.rc',
60 ], 60 ],
61 'dependencies': [ 61 'dependencies': [
62 'chrome_watcher_client',
62 'chrome_watcher_resources', 63 'chrome_watcher_resources',
63 '../base/base.gyp:base', 64 '../base/base.gyp:base',
64 '../components/components.gyp:browser_watcher', 65 '../components/components.gyp:browser_watcher',
65 ], 66 ],
66 'msvs_settings': { 67 'msvs_settings': {
67 'VCLinkerTool': { 68 'VCLinkerTool': {
68 # Set /SUBSYSTEM:WINDOWS. 69 # Set /SUBSYSTEM:WINDOWS.
69 'SubSystem': '2', 70 'SubSystem': '2',
71 'conditions': [
72 ['syzyasan==1', {
73 'AdditionalDependencies': [
74 'kasko.dll.lib',
75 ],
76 'AdditionalLibraryDirectories':
77 ['<(DEPTH)/third_party/kasko'],
78 }],
79 ],
70 }, 80 },
71 }, 81 },
72 }, 82 },
73 ], 83 ],
74 } 84 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698