OLD | NEW |
(Empty) | |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 { |
| 6 'variables': { |
| 7 # Cross-platform ownership sources. |
| 8 'ownership_shared_sources': [ |
| 9 'ownership/owner_key_util.cc', |
| 10 'ownership/owner_key_util.h', |
| 11 'ownership/owner_key_util_impl.cc', |
| 12 'ownership/owner_key_util_impl.h', |
| 13 ], |
| 14 }, |
| 15 'targets': [{ |
| 16 'target_name': 'ownership', |
| 17 'type': '<(component)', |
| 18 'dependencies': [ |
| 19 '<(DEPTH)/base/base.gyp:base', |
| 20 '<(DEPTH)/crypto/crypto.gyp:crypto', |
| 21 ], |
| 22 'defines': [ |
| 23 'OWNERSHIP_IMPLEMENTATION', |
| 24 ], |
| 25 'sources': [ '<@(ownership_shared_sources)' ], |
| 26 }], |
| 27 } |
OLD | NEW |