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"', { | |
Mark Seaborn
2013/06/21 13:35:13
Why does this have 'OS != "ios"'? This isn't a us
| |
86 'dependencies': [ | |
87 'nacl_common.gypi:nacl_switches', | |
88 ], | |
89 }], | |
85 ], | 90 ], |
86 }, | 91 }, |
87 ], | 92 ], |
88 'conditions': [ | 93 'conditions': [ |
89 ['OS=="win" and target_arch=="ia32"', { | 94 ['OS=="win" and target_arch=="ia32"', { |
90 'targets': [ | 95 'targets': [ |
91 { | 96 { |
92 'target_name': 'common_constants_win64', | 97 'target_name': 'common_constants_win64', |
93 'type': 'static_library', | 98 'type': 'static_library', |
94 'include_dirs': [ | 99 'include_dirs': [ |
95 '<(SHARED_INTERMEDIATE_DIR)', # Needed by chrome_paths.cc. | 100 '<(SHARED_INTERMEDIATE_DIR)', # Needed by chrome_paths.cc. |
96 ], | 101 ], |
97 'dependencies': [ | 102 'dependencies': [ |
103 'nacl_common.gypi:nacl_switches_win64', | |
98 '../base/base.gyp:base_nacl_win64', | 104 '../base/base.gyp:base_nacl_win64', |
99 '../third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version_h ', | 105 '../third_party/widevine/cdm/widevine_cdm.gyp:widevine_cdm_version_h ', |
100 ], | 106 ], |
101 'defines': [ | 107 'defines': [ |
102 '<@(nacl_win64_defines)', | 108 '<@(nacl_win64_defines)', |
103 'COMPILE_CONTENT_STATICALLY', | 109 'COMPILE_CONTENT_STATICALLY', |
104 ], | 110 ], |
105 'configurations': { | 111 'configurations': { |
106 'Common_Base': { | 112 'Common_Base': { |
107 'msvs_target_platform': 'x64', | 113 'msvs_target_platform': 'x64', |
108 }, | 114 }, |
109 }, | 115 }, |
110 }, | 116 }, |
111 ], | 117 ], |
112 }], | 118 }], |
113 ], | 119 ], |
114 } | 120 } |
OLD | NEW |