| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 | 9 |
| 10 'includes': [ | 10 'includes': [ |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 'conditions': [ | 92 'conditions': [ |
| 93 ['OS=="win" and target_arch=="ia32"', { | 93 ['OS=="win" and target_arch=="ia32"', { |
| 94 'targets': [ | 94 'targets': [ |
| 95 { | 95 { |
| 96 'target_name': 'common_constants_win64', | 96 'target_name': 'common_constants_win64', |
| 97 'type': 'static_library', | 97 'type': 'static_library', |
| 98 'include_dirs': [ | 98 'include_dirs': [ |
| 99 '<(SHARED_INTERMEDIATE_DIR)', # Needed by chrome_paths.cc. | 99 '<(SHARED_INTERMEDIATE_DIR)', # Needed by chrome_paths.cc. |
| 100 ], | 100 ], |
| 101 'dependencies': [ | 101 'dependencies': [ |
| 102 '../base/base.gyp:base_nacl_win64', | 102 '../base/base.gyp:base_win64', |
| 103 '../components/nacl.gyp:nacl_switches_win64', | 103 '../components/nacl.gyp:nacl_switches_win64', |
| 104 '../third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version_h
', | 104 '../third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version_h
', |
| 105 ], | 105 ], |
| 106 'defines': [ | 106 'defines': [ |
| 107 '<@(nacl_win64_defines)', | 107 '<@(nacl_win64_defines)', |
| 108 'COMPILE_CONTENT_STATICALLY', | 108 'COMPILE_CONTENT_STATICALLY', |
| 109 ], | 109 ], |
| 110 'configurations': { | 110 'configurations': { |
| 111 'Common_Base': { | 111 'Common_Base': { |
| 112 'msvs_target_platform': 'x64', | 112 'msvs_target_platform': 'x64', |
| 113 }, | 113 }, |
| 114 }, | 114 }, |
| 115 }, | 115 }, |
| 116 ], | 116 ], |
| 117 }], | 117 }], |
| 118 ], | 118 ], |
| 119 } | 119 } |
| OLD | NEW |