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

Side by Side Diff: chrome/chrome_installer_static.gypi

Issue 2017853002: Add functionality to the install_static library to tokenize strings and compare versions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix windows gn builder redness Created 4 years, 7 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
1 # Copyright 2016 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # The install_static_util target should only depend on functions in kernel32 5 # The install_static_util target should only depend on functions in kernel32
6 # and advapi32. Please don't add dependencies on other system libraries. 6 # and advapi32. Please don't add dependencies on other system libraries.
7 { 7 {
8 'target_defaults': { 8 'target_defaults': {
9 'variables': { 9 'variables': {
10 'installer_static_target': 0, 10 'installer_static_target': 0,
(...skipping 28 matching lines...) Expand all
39 'msvs_settings': { 39 'msvs_settings': {
40 'VCLinkerTool': { 40 'VCLinkerTool': {
41 # Please don't add dependencies on other system libraries. 41 # Please don't add dependencies on other system libraries.
42 'AdditionalDependencies': [ 42 'AdditionalDependencies': [
43 'kernel32.lib', 43 'kernel32.lib',
44 'advapi32.lib', 44 'advapi32.lib',
45 ], 45 ],
46 }, 46 },
47 }, 47 },
48 }, 48 },
49 {
50 'target_name': 'install_static_unittests',
grt (UTC plus 2) 2016/05/27 14:13:20 add an .isolate file for this test; see http://www
ananta 2016/05/27 20:05:25 Yeah. I had that file created. Forgot to git add i
grt (UTC plus 2) 2016/05/27 20:18:03 Cool. You need an install_static_unittests_run tar
51 'type': 'executable',
52 'sources': [
53 'install_static/install_static_unittests.cc',
54 ],
55 'include_dirs': [
56 '..',
57 '<(SHARED_INTERMEDIATE_DIR)',
58 ],
59 'dependencies': [
60 '../base/base.gyp:base',
61 '../base/base.gyp:run_all_unittests',
62 '../base/base.gyp:test_support_base',
63 'chrome.gyp:install_static_util',
64 '../testing/gmock.gyp:gmock',
65 '../testing/gtest.gyp:gtest',
66 ],
67 },
49 ], 68 ],
50 }], 69 }],
51 ['OS=="win" and target_arch=="ia32"', { 70 ['OS=="win" and target_arch=="ia32"', {
52 'targets': [ 71 'targets': [
53 { 72 {
54 'target_name': 'install_static_util_nacl_win64', 73 'target_name': 'install_static_util_nacl_win64',
55 'type': 'static_library', 74 'type': 'static_library',
56 'variables': { 75 'variables': {
57 'installer_static_target': 1, 76 'installer_static_target': 1,
58 }, 77 },
(...skipping 15 matching lines...) Expand all
74 'kernel32.lib', 93 'kernel32.lib',
75 'advapi32.lib', 94 'advapi32.lib',
76 ], 95 ],
77 }, 96 },
78 }, 97 },
79 }, 98 },
80 ], 99 ],
81 }], 100 }],
82 ], 101 ],
83 } 102 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698