| OLD | NEW |
| 1 { | 1 { |
| 2 'variables': { | 2 'variables': { |
| 3 # Product name is used for Mac bundle. | 3 # Product name is used for Mac bundle. |
| 4 'app_shell_product_name': 'App Shell', | 4 'app_shell_product_name': 'App Shell', |
| 5 # The version is high enough to be supported by Omaha (at least 31) | 5 # The version is high enough to be supported by Omaha (at least 31) |
| 6 # but fake enough to be obviously not a Chrome release. | 6 # but fake enough to be obviously not a Chrome release. |
| 7 'app_shell_version': '38.1234.5678.9', | 7 'app_shell_version': '38.1234.5678.9', |
| 8 'chromium_code': 1, | 8 'chromium_code': 1, |
| 9 }, | 9 }, |
| 10 'targets': [ | 10 'targets': [ |
| (...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 # This is only here to keep gyp happy. This target never builds on | 223 # This is only here to keep gyp happy. This target never builds on |
| 224 # mobile platforms. | 224 # mobile platforms. |
| 225 ['OS != "ios" and OS != "android"', { | 225 ['OS != "ios" and OS != "android"', { |
| 226 'dependencies': [ | 226 'dependencies': [ |
| 227 '<(DEPTH)/components/components.gyp:storage_monitor_test_support', | 227 '<(DEPTH)/components/components.gyp:storage_monitor_test_support', |
| 228 ], | 228 ], |
| 229 }], | 229 }], |
| 230 ] | 230 ] |
| 231 }, | 231 }, |
| 232 ], | 232 ], |
| 233 'conditions': [ | |
| 234 ['test_isolation_mode != "noop"', { | |
| 235 'targets': [ | |
| 236 { | |
| 237 'target_name': 'extensions_browsertests_run', | |
| 238 'type': 'none', | |
| 239 'dependencies': [ | |
| 240 'extensions_browsertests', | |
| 241 ], | |
| 242 'includes': [ | |
| 243 '../build/isolate.gypi', | |
| 244 ], | |
| 245 'sources': [ | |
| 246 'extensions_browsertests.isolate', | |
| 247 ], | |
| 248 }, | |
| 249 ], | |
| 250 }], | |
| 251 ], | |
| 252 } | 233 } |
| OLD | NEW |