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

Side by Side Diff: chrome_elf/chrome_elf.gyp

Issue 133923002: Use a Finch Experiment to control the Browser Blacklist (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fix unittests Created 6 years, 11 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
« no previous file with comments | « chrome_elf/blacklist/test/blacklist_test.cc ('k') | chrome_elf/chrome_elf_main.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 }, 42 },
43 { 43 {
44 'target_name': 'chrome_elf_unittests', 44 'target_name': 'chrome_elf_unittests',
45 'type': 'executable', 45 'type': 'executable',
46 'sources': [ 46 'sources': [
47 'blacklist/test/blacklist_test.cc', 47 'blacklist/test/blacklist_test.cc',
48 'ntdll_cache_unittest.cc', 48 'ntdll_cache_unittest.cc',
49 ], 49 ],
50 'include_dirs': [ 50 'include_dirs': [
51 '..', 51 '..',
52 '<(SHARED_INTERMEDIATE_DIR)',
52 ], 53 ],
53 'dependencies': [ 54 'dependencies': [
54 'chrome_elf_lib', 55 'chrome_elf_lib',
55 '../base/base.gyp:base', 56 '../base/base.gyp:base',
56 '../base/base.gyp:run_all_unittests', 57 '../base/base.gyp:run_all_unittests',
57 '../base/base.gyp:test_support_base', 58 '../base/base.gyp:test_support_base',
58 '../sandbox/sandbox.gyp:sandbox', 59 '../sandbox/sandbox.gyp:sandbox',
59 '../testing/gtest.gyp:gtest', 60 '../testing/gtest.gyp:gtest',
60 'blacklist', 61 'blacklist',
61 'blacklist_test_dll_1', 62 'blacklist_test_dll_1',
62 'blacklist_test_dll_2', 63 'blacklist_test_dll_2',
63 'blacklist_test_dll_3', 64 'blacklist_test_dll_3',
64 'blacklist_test_main_dll', 65 'blacklist_test_main_dll',
65 ], 66 ],
66 }, 67 },
67 { 68 {
68 'target_name': 'chrome_elf_lib', 69 'target_name': 'chrome_elf_lib',
69 'type': 'static_library', 70 'type': 'static_library',
70 'include_dirs': [ 71 'include_dirs': [
71 '..', 72 '..',
72 ], 73 ],
73 'sources': [ 74 'sources': [
74 'chrome_elf_types.h', 75 'chrome_elf_types.h',
75 'ntdll_cache.cc', 76 'ntdll_cache.cc',
76 'ntdll_cache.h', 77 'ntdll_cache.h',
77 ], 78 ],
78 }, 79 },
79 ], 80 ],
80 } 81 }
OLDNEW
« no previous file with comments | « chrome_elf/blacklist/test/blacklist_test.cc ('k') | chrome_elf/chrome_elf_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698