| 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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 '..', | 98 '..', |
| 99 ], | 99 ], |
| 100 'sources': [ | 100 'sources': [ |
| 101 'create_file/chrome_create_file.cc', | 101 'create_file/chrome_create_file.cc', |
| 102 'create_file/chrome_create_file.h', | 102 'create_file/chrome_create_file.h', |
| 103 'ntdll_cache.cc', | 103 'ntdll_cache.cc', |
| 104 'ntdll_cache.h', | 104 'ntdll_cache.h', |
| 105 ], | 105 ], |
| 106 'dependencies': [ | 106 'dependencies': [ |
| 107 'chrome_elf_common', | 107 'chrome_elf_common', |
| 108 '../base/base.gyp:base_static', |
| 109 '../sandbox/sandbox.gyp:sandbox', |
| 108 ], | 110 ], |
| 109 'conditions': [ | 111 'conditions': [ |
| 110 ['component=="shared_library"', { | 112 ['component=="shared_library"', { |
| 111 # In component builds, all targets depend on chrome_redirects by | 113 # In component builds, all targets depend on chrome_redirects by |
| 112 # default. Remove it here to avoid a circular dependency. | 114 # default. Remove it here to avoid a circular dependency. |
| 113 'dependencies!': [ | 115 'dependencies!': [ |
| 114 '../chrome_elf/chrome_elf.gyp:chrome_redirects', | 116 '../chrome_elf/chrome_elf.gyp:chrome_redirects', |
| 115 ], | 117 ], |
| 116 }], | 118 }], |
| 117 ], | 119 ], |
| 118 }, | 120 }, |
| 119 { | 121 { |
| 120 'target_name': 'chrome_elf_common', | 122 'target_name': 'chrome_elf_common', |
| 121 'type': 'static_library', | 123 'type': 'static_library', |
| 122 'include_dirs': [ | 124 'include_dirs': [ |
| 123 '..', | 125 '..', |
| 124 ], | 126 ], |
| 125 'sources': [ | 127 'sources': [ |
| 126 'chrome_elf_constants.cc', | 128 'chrome_elf_constants.cc', |
| 127 'chrome_elf_constants.h', | 129 'chrome_elf_constants.h', |
| 128 'chrome_elf_types.h', | 130 'chrome_elf_types.h', |
| 129 'chrome_elf_util.cc', | 131 'chrome_elf_util.cc', |
| 130 'chrome_elf_util.h', | 132 'chrome_elf_util.h', |
| 133 'thunk_getter.cc', |
| 134 'thunk_getter.h', |
| 131 ], | 135 ], |
| 132 'conditions': [ | 136 'conditions': [ |
| 133 ['component=="shared_library"', { | 137 ['component=="shared_library"', { |
| 134 # In component builds, all targets depend on chrome_redirects by | 138 # In component builds, all targets depend on chrome_redirects by |
| 135 # default. Remove it here so we are able to test it. | 139 # default. Remove it here so we are able to test it. |
| 136 'dependencies!': [ | 140 'dependencies!': [ |
| 137 '../chrome_elf/chrome_elf.gyp:chrome_redirects', | 141 '../chrome_elf/chrome_elf.gyp:chrome_redirects', |
| 138 ], | 142 ], |
| 139 }], | 143 }], |
| 140 ], | 144 ], |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 '../chrome_elf/chrome_elf.gyp:chrome_redirects', | 191 '../chrome_elf/chrome_elf.gyp:chrome_redirects', |
| 188 ], | 192 ], |
| 189 }], | 193 }], |
| 190 ], | 194 ], |
| 191 }, | 195 }, |
| 192 ], | 196 ], |
| 193 }], | 197 }], |
| 194 ], | 198 ], |
| 195 } | 199 } |
| 196 | 200 |
| OLD | NEW |