| 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/util/version.gypi', | 9 '../build/util/version.gypi', |
| 10 '../build/win_precompile.gypi', | 10 '../build/win_precompile.gypi', |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 { | 115 { |
| 116 'target_name': 'chrome_elf_common', | 116 'target_name': 'chrome_elf_common', |
| 117 'type': 'static_library', | 117 'type': 'static_library', |
| 118 'dependencies': [ | 118 'dependencies': [ |
| 119 'chrome_elf_constants', | 119 'chrome_elf_constants', |
| 120 ], | 120 ], |
| 121 'include_dirs': [ | 121 'include_dirs': [ |
| 122 '..', | 122 '..', |
| 123 ], | 123 ], |
| 124 'sources': [ | 124 'sources': [ |
| 125 'chrome_elf_reg.cc', |
| 126 'chrome_elf_reg.h', |
| 125 'chrome_elf_util.cc', | 127 'chrome_elf_util.cc', |
| 126 'chrome_elf_util.h', | 128 'chrome_elf_util.h', |
| 127 'thunk_getter.cc', | 129 'thunk_getter.cc', |
| 128 'thunk_getter.h', | 130 'thunk_getter.h', |
| 129 ], | 131 ], |
| 130 }, | 132 }, |
| 131 { | 133 { |
| 132 'target_name': 'chrome_elf_breakpad', | 134 'target_name': 'chrome_elf_breakpad', |
| 133 'type': 'static_library', | 135 'type': 'static_library', |
| 134 'include_dirs': [ | 136 'include_dirs': [ |
| (...skipping 20 matching lines...) Expand all Loading... |
| 155 'dependencies': [ | 157 'dependencies': [ |
| 156 'chrome_elf_unittests', | 158 'chrome_elf_unittests', |
| 157 ], | 159 ], |
| 158 'includes': [ '../build/isolate.gypi' ], | 160 'includes': [ '../build/isolate.gypi' ], |
| 159 'sources': [ 'chrome_elf_unittests.isolate' ], | 161 'sources': [ 'chrome_elf_unittests.isolate' ], |
| 160 }, | 162 }, |
| 161 ], | 163 ], |
| 162 }], | 164 }], |
| 163 ], | 165 ], |
| 164 } | 166 } |
| OLD | NEW |