| OLD | NEW |
| 1 # Copyright (c) 2014 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 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 # TODO: Factor out all of the common items across the test targets into a |
| 6 # single .gypi file that can be included by each test target. |
| 7 |
| 5 { | 8 { |
| 6 'conditions': [ | 9 'conditions': [ |
| 7 ['archive_chromoting_tests==1', { | 10 ['archive_chromoting_tests==1', { |
| 8 'targets': [ | 11 'targets': [ |
| 9 { | 12 { |
| 10 'target_name': 'chromoting_integration_tests_run', | 13 'target_name': 'chromoting_integration_tests_run', |
| 11 'type': 'none', | 14 'type': 'none', |
| 12 'dependencies': [ | 15 'dependencies': [ |
| 13 '../../chrome/chrome.gyp:browser_tests', | 16 '../../chrome/chrome.gyp:browser_tests', |
| 14 '../../remoting/remoting.gyp:remoting_webapp_v1', | 17 '../../remoting/remoting.gyp:remoting_webapp_v1', |
| 15 '../../remoting/remoting.gyp:remoting_webapp_v2', | 18 '../../remoting/remoting.gyp:remoting_webapp_v2', |
| 16 ], | 19 ], |
| 17 'includes': [ | 20 'includes': [ |
| 18 '../../build/isolate.gypi', | 21 '../../build/isolate.gypi', |
| 19 ], | 22 ], |
| 20 'sources': [ | 23 'sources': [ |
| 21 'chromoting_integration_tests.isolate', | 24 'chromoting_integration_tests.isolate', |
| 22 ], | 25 ], |
| 23 'conditions': [ | 26 'conditions': [ |
| 24 ['OS=="linux"', { | 27 ['OS=="linux"', { |
| 25 'dependencies': [ | 28 'dependencies': [ |
| 26 '../../remoting/remoting.gyp:remoting_me2me_host_archive', | 29 '../../remoting/remoting.gyp:remoting_me2me_host_archive', |
| 30 '../../remoting/webapp/app_remoting/internal/app_remoting_all.gy
p:app_remoting_all_apps', |
| 31 ], |
| 32 }], # OS=="linux" |
| 33 ], |
| 34 }, # target_name: 'chromoting_integration_tests_run' |
| 35 { |
| 36 'target_name': 'chromoting_multi_machine_example_test', |
| 37 'type': 'none', |
| 38 'dependencies': [ |
| 39 '../../chrome/chrome.gyp:browser_tests', |
| 40 '../../remoting/remoting.gyp:remoting_webapp_v1', |
| 41 '../../remoting/remoting.gyp:remoting_webapp_v2', |
| 42 ], |
| 43 'includes': [ |
| 44 '../../build/isolate.gypi', |
| 45 ], |
| 46 'sources': [ |
| 47 'multi_machine_example/example_test_controller.isolate', |
| 48 'multi_machine_example/example_task.isolate', |
| 49 ], |
| 50 'conditions': [ |
| 51 ['OS=="linux"', { |
| 52 'dependencies': [ |
| 53 '../../remoting/remoting.gyp:remoting_me2me_host_archive', |
| 27 ], | 54 ], |
| 28 }], # OS=="linux" | 55 }], # OS=="linux" |
| 29 ], | 56 ], |
| 30 }, | 57 }, # target_name: 'chromoting_multi_machine_example_test' |
| 31 ], | 58 ], |
| 32 }], | 59 }], |
| 33 ], | 60 ], |
| 34 } | 61 } |
| OLD | NEW |