| 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 'variables': { | 5 'variables': { |
| 6 'chromium_code': 1, | 6 'chromium_code': 1, |
| 7 | 7 |
| 8 # Define the common dependencies that contain all the actual | 8 # Define the common dependencies that contain all the actual |
| 9 # Chromium functionality. This list gets pulled in below by | 9 # Chromium functionality. This list gets pulled in below by |
| 10 # the link of the actual chrome (or chromium) executable on | 10 # the link of the actual chrome (or chromium) executable on |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 ], | 120 ], |
| 121 }], | 121 }], |
| 122 ['target_arch=="arm"', { | 122 ['target_arch=="arm"', { |
| 123 'nacl_defines': [ | 123 'nacl_defines': [ |
| 124 'NACL_BUILD_ARCH=arm', | 124 'NACL_BUILD_ARCH=arm', |
| 125 'NACL_BUILD_SUBARCH=32', | 125 'NACL_BUILD_SUBARCH=32', |
| 126 'NACL_TARGET_ARCH=arm', | 126 'NACL_TARGET_ARCH=arm', |
| 127 'NACL_TARGET_SUBARCH=32', | 127 'NACL_TARGET_SUBARCH=32', |
| 128 ], | 128 ], |
| 129 }], | 129 }], |
| 130 ['target_arch=="mipsel"', { |
| 131 'nacl_defines': [ |
| 132 ], |
| 133 }], |
| 130 ], # conditions | 134 ], # conditions |
| 131 }, # variables | 135 }, # variables |
| 132 'includes': [ | 136 'includes': [ |
| 133 # Place some targets in gypi files to reduce contention on this file. | 137 # Place some targets in gypi files to reduce contention on this file. |
| 134 # By using an include, we keep everything in a single xcodeproj file. | 138 # By using an include, we keep everything in a single xcodeproj file. |
| 135 # Note on Win64 targets: targets that end with win64 be used | 139 # Note on Win64 targets: targets that end with win64 be used |
| 136 # on 64-bit Windows only. Targets that end with nacl_win64 should be used | 140 # on 64-bit Windows only. Targets that end with nacl_win64 should be used |
| 137 # by Native Client only. | 141 # by Native Client only. |
| 138 # NOTE: Most new includes should go in the OS!="ios" condition below. | 142 # NOTE: Most new includes should go in the OS!="ios" condition below. |
| 139 '../build/win_precompile.gypi', | 143 '../build/win_precompile.gypi', |
| (...skipping 992 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1132 '../build/java.gypi', | 1136 '../build/java.gypi', |
| 1133 ], | 1137 ], |
| 1134 }, | 1138 }, |
| 1135 ], # 'targets' | 1139 ], # 'targets' |
| 1136 'includes': [ | 1140 'includes': [ |
| 1137 'chrome_android.gypi', | 1141 'chrome_android.gypi', |
| 1138 ]}, # 'includes' | 1142 ]}, # 'includes' |
| 1139 ], # OS=="android" | 1143 ], # OS=="android" |
| 1140 ], # 'conditions' | 1144 ], # 'conditions' |
| 1141 } | 1145 } |
| OLD | NEW |