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

Side by Side Diff: chrome/chrome.gyp

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 character literal type. 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
« no previous file with comments | « chrome/app/client_util.cc ('k') | chrome/chrome_watcher/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 # Define the common dependencies that contain all the actual 8 # Define the common dependencies that contain all the actual
9 # Chromium functionality. This list gets pulled in below by 9 # Chromium functionality. This list gets pulled in below by
10 # the link of the actual chrome (or chromium) executable on 10 # the link of the actual chrome (or chromium) executable on
(...skipping 765 matching lines...) Expand 10 before | Expand all | Expand 10 after
776 ['OS!="win"', { 776 ['OS!="win"', {
777 'sources!': [ 777 'sources!': [
778 'service/service_utility_process_host.cc', 778 'service/service_utility_process_host.cc',
779 'service/service_utility_process_host.h', 779 'service/service_utility_process_host.h',
780 ], 780 ],
781 }], 781 }],
782 ], 782 ],
783 }, 783 },
784 ], 784 ],
785 }], 785 }],
786 ['syzyasan==1', {
787 'variables': {
788 'kasko_exe_dir': '<(DEPTH)/third_party/kasko',
789 },
790 'targets': [
791 {
792 'target_name': 'kasko_dll',
793 'type': 'none',
794 'outputs': [
795 '<(PRODUCT_DIR)/kasko.dll',
796 '<(PRODUCT_DIR)/kasko.dll.pdb',
797 ],
798 'copies': [
799 {
800 'destination': '<(PRODUCT_DIR)',
801 'files': [
802 '<(kasko_exe_dir)/kasko.dll',
803 '<(kasko_exe_dir)/kasko.dll.pdb',
804 ],
805 },
806 ],
807 'direct_dependent_settings': {
808 'msvs_settings': {
809 'VCLinkerTool': {
810 'AdditionalDependencies': [
811 'kasko.dll.lib',
812 ],
813 'AdditionalLibraryDirectories': [
814 '<(DEPTH)/third_party/kasko'
815 ],
816 },
817 },
818 },
819 },
820 ],
821 }],
786 ], # 'conditions' 822 ], # 'conditions'
787 } 823 }
OLDNEW
« no previous file with comments | « chrome/app/client_util.cc ('k') | chrome/chrome_watcher/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698