| OLD | NEW |
| 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 27 matching lines...) Expand all Loading... |
| 38 'user32.lib', | 38 'user32.lib', |
| 39 ], | 39 ], |
| 40 }, | 40 }, |
| 41 }, | 41 }, |
| 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 'elf_imports_unittest.cc', |
| 48 'ntdll_cache_unittest.cc', | 49 'ntdll_cache_unittest.cc', |
| 49 ], | 50 ], |
| 50 'include_dirs': [ | 51 'include_dirs': [ |
| 51 '..', | 52 '..', |
| 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', |
| (...skipping 13 matching lines...) Expand all Loading... |
| 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 } |
| OLD | NEW |