| 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 438 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 449 'safe_browsing_proto', | 449 'safe_browsing_proto', |
| 450 ], | 450 ], |
| 451 'sources': [ | 451 'sources': [ |
| 452 'common/safe_browsing/binary_feature_extractor.cc', | 452 'common/safe_browsing/binary_feature_extractor.cc', |
| 453 'common/safe_browsing/binary_feature_extractor.h', | 453 'common/safe_browsing/binary_feature_extractor.h', |
| 454 'common/safe_browsing/binary_feature_extractor_win.cc', | 454 'common/safe_browsing/binary_feature_extractor_win.cc', |
| 455 'common/safe_browsing/pe_image_reader_win.cc', | 455 'common/safe_browsing/pe_image_reader_win.cc', |
| 456 'common/safe_browsing/pe_image_reader_win.h', | 456 'common/safe_browsing/pe_image_reader_win.h', |
| 457 'tools/safe_browsing/sb_sigutil.cc', | 457 'tools/safe_browsing/sb_sigutil.cc', |
| 458 ], | 458 ], |
| 459 'msvs_settings': { |
| 460 'VCLinkerTool': { |
| 461 'AdditionalDependencies': [ |
| 462 'wintrust.lib', |
| 463 ], |
| 464 }, |
| 465 }, |
| 459 }, | 466 }, |
| 460 ], # 'targets' | 467 ], # 'targets' |
| 461 'includes': [ | 468 'includes': [ |
| 462 'chrome_watcher/chrome_watcher.gypi', | 469 'chrome_watcher/chrome_watcher.gypi', |
| 463 'chrome_process_finder.gypi', | 470 'chrome_process_finder.gypi', |
| 464 ], | 471 ], |
| 465 }], # OS=="win" | 472 }], # OS=="win" |
| 466 ['OS=="win" and target_arch=="ia32"', | 473 ['OS=="win" and target_arch=="ia32"', |
| 467 { 'targets': [ | 474 { 'targets': [ |
| 468 { | 475 { |
| (...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 803 # expired. crbug.com/577698 | 810 # expired. crbug.com/577698 |
| 804 '../components/components.gyp:startup_metric_utils_common', | 811 '../components/components.gyp:startup_metric_utils_common', |
| 805 ], | 812 ], |
| 806 }], | 813 }], |
| 807 ], | 814 ], |
| 808 }, | 815 }, |
| 809 ], | 816 ], |
| 810 }], | 817 }], |
| 811 ], # 'conditions' | 818 ], # 'conditions' |
| 812 } | 819 } |
| OLD | NEW |