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

Side by Side Diff: chrome/chrome_installer_static.gypi

Issue 1904613002: Preparation patch for moving the chrome crashpad integration into chrome_elf. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address sky's review comments Created 4 years, 8 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
(Empty)
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
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.
robertshield 2016/04/20 17:32:50 Does there exist gyp magic such that only kernel32
ananta 2016/04/20 20:15:36 Done. Added comments here and in the build.gn file
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698