OLD | NEW |
(Empty) | |
| 1 # Copyright 2015 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 'targets': [ |
| 7 { |
| 8 # GN version: //components/crash_keys |
| 9 'target_name': 'crash_keys', |
| 10 'type': 'static_library', |
| 11 'include_dirs': [ |
| 12 '..', |
| 13 ], |
| 14 'dependencies': [ |
| 15 # List of dependencies is intentionally very minimal. Please avoid |
| 16 # adding extra dependencies without first checking with OWNERS. |
| 17 '../base/base.gyp:base', |
| 18 ], |
| 19 'sources': [ |
| 20 'crash_keys/crash_keys.cc', |
| 21 'crash_keys/crash_keys.h', |
| 22 ], |
| 23 }, |
| 24 ], |
| 25 'conditions': [ |
| 26 ['OS=="win" and target_arch=="ia32"', { |
| 27 'targets': [ |
| 28 { |
| 29 'target_name': 'crash_keys_win64', |
| 30 'type': 'static_library', |
| 31 'sources': [ |
| 32 'crash_keys/crash_keys.cc', |
| 33 'crash_keys/crash_keys.h', |
| 34 ], |
| 35 'dependencies': [ |
| 36 '../base/base.gyp:base_win64', |
| 37 ], |
| 38 'configurations': { |
| 39 'Common_Base': { |
| 40 'msvs_target_platform': 'x64', |
| 41 }, |
| 42 }, |
| 43 }, |
| 44 ], |
| 45 }], |
| 46 ], |
| 47 } |
OLD | NEW |