OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'variables': { | 8 'variables': { |
9 'version_py_path': 'tools/build/version.py', | 9 'version_py_path': 'tools/build/version.py', |
10 'version_path': 'VERSION', | 10 'version_path': 'VERSION', |
(...skipping 1286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1297 'VCLinkerTool': { | 1297 'VCLinkerTool': { |
1298 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS | 1298 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
1299 }, | 1299 }, |
1300 }, | 1300 }, |
1301 'configurations': { | 1301 'configurations': { |
1302 'Common_Base': { | 1302 'Common_Base': { |
1303 'msvs_target_platform': 'x64', | 1303 'msvs_target_platform': 'x64', |
1304 }, | 1304 }, |
1305 }, | 1305 }, |
1306 }, | 1306 }, |
| 1307 { |
| 1308 'target_name': 'sb_sigutil', |
| 1309 'type': 'executable', |
| 1310 'dependencies': [ |
| 1311 '../base/base.gyp:base', |
| 1312 'safe_browsing_proto', |
| 1313 ], |
| 1314 'sources': [ |
| 1315 'browser/safe_browsing/signature_util.h', |
| 1316 'browser/safe_browsing/signature_util_win.cc', |
| 1317 'tools/safe_browsing/sb_sigutil.cc', |
| 1318 ], |
| 1319 }, |
1307 ]}, # 'targets' | 1320 ]}, # 'targets' |
1308 ], # OS=="win" | 1321 ], # OS=="win" |
1309 ], # 'conditions' | 1322 ], # 'conditions' |
1310 } | 1323 } |
OLD | NEW |