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

Side by Side Diff: chrome/chrome.gyp

Issue 8931018: Simple tool to populate a signature info protocol buffer from an executable. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address Matt's comments Created 9 years 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/tools/safe_browsing/sb_sigutil.cc » ('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) 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
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 }
OLDNEW
« no previous file with comments | « no previous file | chrome/tools/safe_browsing/sb_sigutil.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698