| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 # The install_static_util target should only depend on functions in kernel32 | 5 # The install_static_util target should only depend on functions in kernel32 |
| 6 # and advapi32. Please don't add dependencies on other system libraries. | 6 # and advapi32. Please don't add dependencies on other system libraries. |
| 7 { | 7 { |
| 8 'target_defaults': { | 8 'target_defaults': { |
| 9 'variables': { | 9 'variables': { |
| 10 'installer_static_target': 0, | 10 'installer_static_target': 0, |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 ['OS=="win" and test_isolation_mode != "noop"', { | 70 ['OS=="win" and test_isolation_mode != "noop"', { |
| 71 'targets': [ | 71 'targets': [ |
| 72 { | 72 { |
| 73 'target_name': 'install_static_unittests_run', | 73 'target_name': 'install_static_unittests_run', |
| 74 'type': 'none', | 74 'type': 'none', |
| 75 'dependencies': [ | 75 'dependencies': [ |
| 76 'install_static_unittests', | 76 'install_static_unittests', |
| 77 ], | 77 ], |
| 78 'includes': [ '../build/isolate.gypi' ], | 78 'includes': [ '../build/isolate.gypi' ], |
| 79 'sources': [ | 79 'sources': [ |
| 80 'install_static/install_static_unittests.isolate' | 80 'install_static_unittests.isolate' |
| 81 ], | 81 ], |
| 82 }, | 82 }, |
| 83 ], | 83 ], |
| 84 }], | 84 }], |
| 85 ['OS=="win" and target_arch=="ia32"', { | 85 ['OS=="win" and target_arch=="ia32"', { |
| 86 'targets': [ | 86 'targets': [ |
| 87 { | 87 { |
| 88 'target_name': 'install_static_util_nacl_win64', | 88 'target_name': 'install_static_util_nacl_win64', |
| 89 'type': 'static_library', | 89 'type': 'static_library', |
| 90 'variables': { | 90 'variables': { |
| (...skipping 17 matching lines...) Expand all Loading... |
| 108 'kernel32.lib', | 108 'kernel32.lib', |
| 109 'advapi32.lib', | 109 'advapi32.lib', |
| 110 ], | 110 ], |
| 111 }, | 111 }, |
| 112 }, | 112 }, |
| 113 }, | 113 }, |
| 114 ], | 114 ], |
| 115 }], | 115 }], |
| 116 ], | 116 ], |
| 117 } | 117 } |
| OLD | NEW |