| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 'includes': [ | 6 'includes': [ |
| 7 'app_shell.gypi', | 7 'app_shell.gypi', |
| 8 ], | 8 ], |
| 9 'variables': { | 9 'variables': { |
| 10 # Product name is used for Mac bundle. | 10 # Product name is used for Mac bundle. |
| (...skipping 406 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 417 # executable. | 417 # executable. |
| 418 'postbuild_name': 'Verify No Objective-C', | 418 'postbuild_name': 'Verify No Objective-C', |
| 419 'action': [ | 419 'action': [ |
| 420 '../../build/mac/verify_no_objc.sh', | 420 '../../build/mac/verify_no_objc.sh', |
| 421 ], | 421 ], |
| 422 }, | 422 }, |
| 423 ], | 423 ], |
| 424 }, # target app_shell_helper | 424 }, # target app_shell_helper |
| 425 ], | 425 ], |
| 426 }], # OS=="mac" | 426 }], # OS=="mac" |
| 427 ['test_isolation_mode != "noop"', { |
| 428 'targets': [ |
| 429 { |
| 430 'target_name': 'app_shell_unittests_run', |
| 431 'type': 'none', |
| 432 'dependencies': [ |
| 433 'app_shell_unittests', |
| 434 ], |
| 435 'includes': [ |
| 436 '../../build/isolate.gypi', |
| 437 ], |
| 438 'sources': [ |
| 439 'app_shell_unittests.isolate', |
| 440 ], |
| 441 }, |
| 442 ], |
| 443 }], |
| 427 ], | 444 ], |
| 428 } | 445 } |
| OLD | NEW |