OLD | NEW |
(Empty) | |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 { |
| 6 'variables': { |
| 7 'media_router_integration_test_resources': [ |
| 8 'resources/basic_test.html', |
| 9 'resources/common.js' |
| 10 ], |
| 11 }, # end of variables |
| 12 'targets': [ |
| 13 { |
| 14 'target_name': 'media_router_integration_test_files', |
| 15 'type': 'none', |
| 16 'variables': { |
| 17 'output_dir': '<(PRODUCT_DIR)/media_router/browser_test_resources', |
| 18 'resource_files': [ |
| 19 '<@(media_router_integration_test_resources)', |
| 20 ] |
| 21 }, |
| 22 'copies': [ |
| 23 { |
| 24 'destination': '<(output_dir)', |
| 25 'files': [ |
| 26 '<@(resource_files)', |
| 27 ], |
| 28 }, |
| 29 ], |
| 30 }, # end of target 'media_router_integration_test_files' |
| 31 ], # end of targets |
| 32 } |
OLD | NEW |