| 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 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 351 'destination': '<(output_dir)/sinonjs', | 351 'destination': '<(output_dir)/sinonjs', |
| 352 'files': [ | 352 'files': [ |
| 353 '../third_party/sinonjs/src/sinon.js', | 353 '../third_party/sinonjs/src/sinon.js', |
| 354 '../third_party/sinonjs/src/sinon-qunit.js', | 354 '../third_party/sinonjs/src/sinon-qunit.js', |
| 355 ], | 355 ], |
| 356 }, | 356 }, |
| 357 { | 357 { |
| 358 'destination': '<(output_dir)', | 358 'destination': '<(output_dir)', |
| 359 'files': [ | 359 'files': [ |
| 360 '<@(remoting_webapp_main_html_js_files)', | 360 '<@(remoting_webapp_main_html_js_files)', |
| 361 ], | 361 '<@(remoting_webapp_unittest_cases)', |
| 362 }, | 362 '<@(remoting_webapp_unittest_additional_files)' |
| 363 { | |
| 364 'destination': '<(output_dir)', | |
| 365 'files': [ | |
| 366 '<@(remoting_webapp_unittest_cases)' | |
| 367 ], | 363 ], |
| 368 }, | 364 }, |
| 369 ], | 365 ], |
| 370 'actions': [ | 366 'actions': [ |
| 371 { | 367 { |
| 372 'action_name': 'Build Remoting Webapp unittest.html', | 368 'action_name': 'Build Remoting Webapp unittest.html', |
| 373 'inputs': [ | 369 'inputs': [ |
| 374 'webapp/build-html.py', | 370 'webapp/build-html.py', |
| 375 '<(remoting_webapp_unittest_template_main)', | 371 '<(remoting_webapp_unittest_template_main)', |
| 376 '<@(remoting_webapp_main_html_js_files)', | 372 '<@(remoting_webapp_main_html_js_files)', |
| (...skipping 12 matching lines...) Expand all Loading... |
| 389 # exclude list. | 385 # exclude list. |
| 390 '--exclude-js', '<@(remoting_webapp_unittest_exclude_files)', | 386 '--exclude-js', '<@(remoting_webapp_unittest_exclude_files)', |
| 391 '--js', '<@(remoting_webapp_unittest_cases)', | 387 '--js', '<@(remoting_webapp_unittest_cases)', |
| 392 '--instrument-js', '<@(remoting_webapp_main_html_js_files)', | 388 '--instrument-js', '<@(remoting_webapp_main_html_js_files)', |
| 393 ], | 389 ], |
| 394 }, | 390 }, |
| 395 ], | 391 ], |
| 396 }, # end of target 'remoting_webapp_js_unittest' | 392 }, # end of target 'remoting_webapp_js_unittest' |
| 397 ], # end of targets | 393 ], # end of targets |
| 398 } | 394 } |
| OLD | NEW |