| 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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 # re-add it in target_conditionals so it's after that exclusion. | 75 # re-add it in target_conditionals so it's after that exclusion. |
| 76 'sources/': [ | 76 'sources/': [ |
| 77 ['include', '^common/chrome_paths_mac\\.mm$'], | 77 ['include', '^common/chrome_paths_mac\\.mm$'], |
| 78 ], | 78 ], |
| 79 }], | 79 }], |
| 80 ], | 80 ], |
| 81 'conditions': [ | 81 'conditions': [ |
| 82 ['toolkit_uses_gtk == 1', { | 82 ['toolkit_uses_gtk == 1', { |
| 83 'dependencies': ['../build/linux/system.gyp:gtk'], | 83 'dependencies': ['../build/linux/system.gyp:gtk'], |
| 84 }], | 84 }], |
| 85 ['OS != "ios"', { | |
| 86 'dependencies': [ | |
| 87 '../components/nacl_common.gypi:nacl_switches', | |
| 88 ], | |
| 89 }], | |
| 90 ], | 85 ], |
| 91 }, | 86 }, |
| 92 ], | 87 ], |
| 93 'conditions': [ | 88 'conditions': [ |
| 94 ['OS=="win" and target_arch=="ia32"', { | 89 ['OS=="win" and target_arch=="ia32"', { |
| 95 'targets': [ | 90 'targets': [ |
| 96 { | 91 { |
| 97 'target_name': 'common_constants_win64', | 92 'target_name': 'common_constants_win64', |
| 98 'type': 'static_library', | 93 'type': 'static_library', |
| 99 'include_dirs': [ | 94 'include_dirs': [ |
| 100 '<(SHARED_INTERMEDIATE_DIR)', # Needed by chrome_paths.cc. | 95 '<(SHARED_INTERMEDIATE_DIR)', # Needed by chrome_paths.cc. |
| 101 ], | 96 ], |
| 102 'dependencies': [ | 97 'dependencies': [ |
| 103 '../base/base.gyp:base_nacl_win64', | 98 '../base/base.gyp:base_nacl_win64', |
| 104 '../components/nacl_common.gypi:nacl_switches_win64', | |
| 105 '../third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version_h
', | 99 '../third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version_h
', |
| 106 ], | 100 ], |
| 107 'defines': [ | 101 'defines': [ |
| 108 '<@(nacl_win64_defines)', | 102 '<@(nacl_win64_defines)', |
| 109 'COMPILE_CONTENT_STATICALLY', | 103 'COMPILE_CONTENT_STATICALLY', |
| 110 ], | 104 ], |
| 111 'configurations': { | 105 'configurations': { |
| 112 'Common_Base': { | 106 'Common_Base': { |
| 113 'msvs_target_platform': 'x64', | 107 'msvs_target_platform': 'x64', |
| 114 }, | 108 }, |
| 115 }, | 109 }, |
| 116 }, | 110 }, |
| 117 ], | 111 ], |
| 118 }], | 112 }], |
| 119 ], | 113 ], |
| 120 } | 114 } |
| OLD | NEW |