| 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 'targets': [ | 6 'targets': [ |
| 7 # Remoting unit tests | 7 # Remoting unit tests |
| 8 { | 8 { |
| 9 'target_name': 'remoting_unittests', | 9 'target_name': 'remoting_unittests', |
| 10 'type': '<(gtest_target_type)', | 10 'type': '<(gtest_target_type)', |
| (...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 321 'destination': '<(output_dir)/sinonjs', | 321 'destination': '<(output_dir)/sinonjs', |
| 322 'files': [ | 322 'files': [ |
| 323 '../third_party/sinonjs/src/sinon.js', | 323 '../third_party/sinonjs/src/sinon.js', |
| 324 '../third_party/sinonjs/src/sinon-qunit.js', | 324 '../third_party/sinonjs/src/sinon-qunit.js', |
| 325 ], | 325 ], |
| 326 }, | 326 }, |
| 327 { | 327 { |
| 328 'destination': '<(output_dir)', | 328 'destination': '<(output_dir)', |
| 329 'files': [ | 329 'files': [ |
| 330 '<@(webapp_js_files)', | 330 '<@(webapp_js_files)', |
| 331 ], | 331 '<@(remoting_webapp_unittest_cases)', |
| 332 }, | 332 '<@(remoting_webapp_unittest_additional_files)' |
| 333 { | |
| 334 'destination': '<(output_dir)', | |
| 335 'files': [ | |
| 336 '<@(remoting_webapp_unittest_cases)' | |
| 337 ], | 333 ], |
| 338 }, | 334 }, |
| 339 ], | 335 ], |
| 340 'actions': [ | 336 'actions': [ |
| 341 { | 337 { |
| 342 'action_name': 'Build Remoting Webapp unittest.html', | 338 'action_name': 'Build Remoting Webapp unittest.html', |
| 343 'inputs': [ | 339 'inputs': [ |
| 344 'webapp/build-html.py', | 340 'webapp/build-html.py', |
| 345 '<(remoting_webapp_unittest_template_main)', | 341 '<(remoting_webapp_unittest_template_main)', |
| 346 '<@(webapp_js_files)', | 342 '<@(webapp_js_files)', |
| (...skipping 12 matching lines...) Expand all Loading... |
| 359 # exclude list. | 355 # exclude list. |
| 360 '--exclude-js', '<@(remoting_webapp_unittest_exclude_files)', | 356 '--exclude-js', '<@(remoting_webapp_unittest_exclude_files)', |
| 361 '--js', '<@(remoting_webapp_unittest_cases)', | 357 '--js', '<@(remoting_webapp_unittest_cases)', |
| 362 '--instrument-js', '<@(webapp_js_files)', | 358 '--instrument-js', '<@(webapp_js_files)', |
| 363 ], | 359 ], |
| 364 }, | 360 }, |
| 365 ], | 361 ], |
| 366 }, # end of target 'remoting_webapp_js_unittest' | 362 }, # end of target 'remoting_webapp_js_unittest' |
| 367 ], # end of targets | 363 ], # end of targets |
| 368 } | 364 } |
| OLD | NEW |