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

Side by Side Diff: chrome_elf/nt_registry/nt_registry.gyp

Issue 1841573002: [Chrome ELF] New NT registry API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Missed new unit tests for install_static. Created 4 years, 6 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 # The nt_registry target should only depend on functions in kernel32.
6 # Please don't add dependencies on other system libraries.
7 {
8 'target_defaults': {
9 # This part is shared between the two versions of the target.
10 'type': 'static_library',
11 'sources': [
12 'nt_registry.cc',
13 'nt_registry.h',
14 ],
15 #'include_dirs': [
16 # '<(SHARED_INTERMEDIATE_DIR)',
17 #],
18 'msvs_settings': {
19 'VCLinkerTool': {
20 # Please don't add dependencies on other system libraries.
21 'AdditionalDependencies': [
22 'kernel32.lib',
23 ],
24 },
25 },
26 },
27 'conditions': [
28 ['OS=="win"', {
29 'targets': [
30 {
31 # GN version: "//chrome_elf/nt_registry",
32 'target_name': 'chrome_elf_nt_registry',
33 },
34 ],
35 }],
36 ['OS=="win" and target_arch=="ia32"', {
37 'targets': [
38 {
39 # GN version: "//chrome_elf/nt_registry",
40 'target_name': 'chrome_elf_nt_registry_nacl_win64',
41 'configurations': {
42 'Common_Base': {
43 'msvs_target_platform': 'x64',
44 },
45 },
46 },
47 ],
48 }],
49 ],
50 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698