Chromium Code Reviews| Index: third_party/zlib/google/compression_utils.gyp |
| diff --git a/tools/android/forwarder/forwarder.gyp b/third_party/zlib/google/compression_utils.gyp |
| similarity index 51% |
| copy from tools/android/forwarder/forwarder.gyp |
| copy to third_party/zlib/google/compression_utils.gyp |
| index 8c1eb07125b8d279633cf829caeaa5a452b5d3d8..cd67addd2f3af22e2260183988e3ef8ad10e0330 100644 |
| --- a/tools/android/forwarder/forwarder.gyp |
| +++ b/third_party/zlib/google/compression_utils.gyp |
| @@ -1,23 +1,22 @@ |
| -# Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| +# Copyright 2016 The Chromium Authors. All rights reserved. |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| { |
| 'targets': [ |
| { |
| - 'target_name': 'forwarder', |
| - 'type': 'executable', |
| + '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.
|
| + 'type': 'static_library', |
| 'dependencies': [ |
| - '../../../base/base.gyp:base', |
| - '../common/common.gyp:android_tools_common', |
| + '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.
|
| ], |
| 'include_dirs': [ |
| '../../..', |
| ], |
| 'sources': [ |
| - 'forwarder.cc', |
| + 'compression_utils.cc', |
| + 'compression_utils.h', |
| ], |
| }, |
| ], |
| } |
| - |