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

Side by Side Diff: third_party/zlib/google/compression_utils.gyp

Issue 1564773002: Move components/compression to third_party/zlib/google (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'forwarder', 8 'target_name': 'compression_utils',
Nico 2016/01/06 14:36:50 I'd add this as a separate target to zip.gyp inste
hajimehoshi 2016/01/07 07:40:10 Done.
9 'type': 'executable', 9 'type': 'static_library',
10 'dependencies': [ 10 'dependencies': [
11 '../../../base/base.gyp:base', 11 'zip.gyp:zip',
Nico 2016/01/06 14:36:50 Do you want to depend on :zip? You don't use anyth
hajimehoshi 2016/01/07 07:40:10 No, done.
12 '../common/common.gyp:android_tools_common',
13 ], 12 ],
14 'include_dirs': [ 13 'include_dirs': [
15 '../../..', 14 '../../..',
16 ], 15 ],
17 'sources': [ 16 'sources': [
18 'forwarder.cc', 17 'compression_utils.cc',
18 'compression_utils.h',
19 ], 19 ],
20 }, 20 },
21 ], 21 ],
22 } 22 }
23
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698