OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |