Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright (c) 2016 The Chromium Authors. All rights reserved. | |
|
sky
2016/04/20 02:15:22
nit: no (c)
ananta
2016/04/20 20:15:35
Done.
| |
| 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 'target_defaults': { | |
| 7 'variables': { | |
| 8 'installer_static_target': 0, | |
| 9 }, | |
| 10 'target_conditions': [ | |
| 11 # This part is shared between the two versions of the target. | |
| 12 ['installer_static_target==1', { | |
| 13 'sources': [ | |
| 14 'install_static/install_util.h', | |
| 15 'install_static/install_util.cc', | |
| 16 ], | |
| 17 'include_dirs': [ | |
| 18 '<(DEPTH)', | |
| 19 ], | |
| 20 }], | |
| 21 ], | |
| 22 }, | |
| 23 'conditions': [ | |
| 24 ['OS=="win"', { | |
| 25 'targets': [ | |
| 26 { | |
| 27 # GN version: //chrome/install_static | |
| 28 'target_name': 'install_static_util', | |
| 29 'type': 'static_library', | |
| 30 'variables': { | |
| 31 'installer_static_target': 1, | |
| 32 }, | |
| 33 'dependencies': [ | |
| 34 'installer_util_strings', | |
| 35 '<(DEPTH)/base/base.gyp:base', | |
| 36 ], | |
| 37 }, | |
| 38 ], | |
| 39 }], | |
| 40 ['OS=="win" and target_arch=="ia32"', { | |
| 41 'targets': [ | |
| 42 { | |
| 43 'target_name': 'install_static_util_nacl_win64', | |
| 44 'type': 'static_library', | |
| 45 'variables': { | |
| 46 'installer_static_target': 1, | |
| 47 }, | |
| 48 'dependencies': [ | |
| 49 'installer_util_strings', | |
| 50 ], | |
| 51 'include_dirs': [ | |
| 52 '<(SHARED_INTERMEDIATE_DIR)', | |
| 53 ], | |
| 54 'configurations': { | |
| 55 'Common_Base': { | |
| 56 'msvs_target_platform': 'x64', | |
| 57 }, | |
| 58 }, | |
| 59 }, | |
| 60 ], | |
| 61 }], | |
| 62 ], | |
| 63 } | |
| OLD | NEW |