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

Side by Side Diff: chrome/installer/mac/third_party/bsdiff/goobsdiff.gyp

Issue 2052713002: Remove the CryptoAPI implementation of SHA-1 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix a few stragglers Created 4 years, 6 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/installer/mac/third_party/bsdiff/BUILD.gn ('k') | tools/gn/bootstrap/bootstrap.py » ('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 { 5 {
6 'target_defaults': { 6 'target_defaults': {
7 'include_dirs': [ 7 'include_dirs': [
8 '../../../../..', 8 '../../../../..',
9 ], 9 ],
10 'link_settings': { 10 'link_settings': {
(...skipping 12 matching lines...) Expand all
23 }, 23 },
24 }, 24 },
25 'targets': [ 25 'targets': [
26 { 26 {
27 # Because size is a concern, don't link against all of base. Instead, 27 # Because size is a concern, don't link against all of base. Instead,
28 # just bring in a copy of the one component that's needed, along with 28 # just bring in a copy of the one component that's needed, along with
29 # the adapter that allows it to be called from C (not C++) code. 29 # the adapter that allows it to be called from C (not C++) code.
30 'target_name': 'goobsdiff_sha1_adapter', 30 'target_name': 'goobsdiff_sha1_adapter',
31 'type': 'static_library', 31 'type': 'static_library',
32 'sources': [ 32 'sources': [
33 '../../../../../base/sha1_portable.cc', 33 '../../../../../base/sha1.cc',
34 'sha1_adapter.cc', 34 'sha1_adapter.cc',
35 'sha1_adapter.h', 35 'sha1_adapter.h',
36 ], 36 ],
37 }, 37 },
38 { 38 {
39 'target_name': 'goobsdiff', 39 'target_name': 'goobsdiff',
40 'type': 'executable', 40 'type': 'executable',
41 'dependencies': [ 41 'dependencies': [
42 'goobsdiff_sha1_adapter', 42 'goobsdiff_sha1_adapter',
43 '../xz/xz.gyp:lzma', 43 '../xz/xz.gyp:lzma',
(...skipping 10 matching lines...) Expand all
54 'goobsdiff_sha1_adapter', 54 'goobsdiff_sha1_adapter',
55 '../xz/xz.gyp:lzma_decompress', 55 '../xz/xz.gyp:lzma_decompress',
56 ], 56 ],
57 'sources': [ 57 'sources': [
58 'empty.cc', 58 'empty.cc',
59 'goobspatch.c', 59 'goobspatch.c',
60 ], 60 ],
61 }, 61 },
62 ], 62 ],
63 } 63 }
OLDNEW
« no previous file with comments | « chrome/installer/mac/third_party/bsdiff/BUILD.gn ('k') | tools/gn/bootstrap/bootstrap.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698