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

Side by Side Diff: chrome_elf/chrome_elf.gyp

Issue 109483003: Make sure Chrome_elf.dll imports are correct and that it the first import of chrome.exe (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Comments Created 7 years 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 | Annotate | Revision Log
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 'variables': { 5 'variables': {
6 'chromium_code': 1, 6 'chromium_code': 1,
7 }, 7 },
8 'includes': [ 8 'includes': [
9 '../build/win_precompile.gypi', 9 '../build/win_precompile.gypi',
10 '../chrome/version.gypi', 10 '../chrome/version.gypi',
(...skipping 18 matching lines...) Expand all
29 'BaseAddress': '0x01c20000', 29 'BaseAddress': '0x01c20000',
30 # Set /SUBSYSTEM:WINDOWS for chrome_elf.dll (for consistency). 30 # Set /SUBSYSTEM:WINDOWS for chrome_elf.dll (for consistency).
31 'SubSystem': '2', 31 'SubSystem': '2',
32 }, 32 },
33 }, 33 },
34 }, 34 },
35 { 35 {
36 'target_name': 'chrome_elf_unittests', 36 'target_name': 'chrome_elf_unittests',
37 'type': 'executable', 37 'type': 'executable',
38 'sources': [ 38 'sources': [
39 'elf_imports_unittest.cc',
39 'ntdll_cache_unittest.cc', 40 'ntdll_cache_unittest.cc',
40 ], 41 ],
41 'include_dirs': [ 42 'include_dirs': [
42 '..', 43 '..',
43 ], 44 ],
44 'dependencies': [ 45 'dependencies': [
45 'chrome_elf_lib', 46 'chrome_elf_lib',
46 '<(DEPTH)/base/base.gyp:run_all_unittests', 47 '<(DEPTH)/base/base.gyp:run_all_unittests',
47 '<(DEPTH)/testing/gtest.gyp:gtest', 48 '<(DEPTH)/testing/gtest.gyp:gtest',
48 ], 49 ],
49 }, 50 },
50 { 51 {
51 'target_name': 'chrome_elf_lib', 52 'target_name': 'chrome_elf_lib',
52 'type': 'static_library', 53 'type': 'static_library',
53 'include_dirs': [ 54 'include_dirs': [
54 '..', 55 '..',
55 ], 56 ],
56 'sources': [ 57 'sources': [
57 'chrome_elf_types.h', 58 'chrome_elf_types.h',
58 'ntdll_cache.cc', 59 'ntdll_cache.cc',
59 'ntdll_cache.h', 60 'ntdll_cache.h',
60 ], 61 ],
61 }, 62 },
62 ], 63 ],
63 } 64 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698