Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1632)

Side by Side Diff: testing/chromoting/integration_tests.gyp

Issue 1231663003: Add functionality to download files from GCS, and include them in the Chromoting isolate. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add copyright header. Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 { 5 {
6 'variables': { 6 'variables': {
7 'run_multi_machine_tests%': '0', 7 'run_multi_machine_tests%': '0',
8 }, 8 },
9 9
10 'conditions': [ 10 'conditions': [
(...skipping 29 matching lines...) Expand all
40 ], 40 ],
41 'targets': [ 41 'targets': [
42 { 42 {
43 'target_name': 'chromoting_integration_tests_run', 43 'target_name': 'chromoting_integration_tests_run',
44 'includes': [ 44 'includes': [
45 './dependencies.gypi', 45 './dependencies.gypi',
46 ], 46 ],
47 'sources': [ 47 'sources': [
48 'chromoting_integration_tests.isolate', 48 'chromoting_integration_tests.isolate',
49 ], 49 ],
50 'actions': [
51 {
52 'action_name': 'download_test_files',
53 'variables': {
54 'dl_files_script': './download_test_files.py',
55 'files_list': './chromoting_test_files.txt',
56 'output_folder': './',
57 },
58 'inputs': [
59 '<(files_list)',
60 ],
61 'outputs': [
62 '<(output_folder)',
63 ],
64 'action': [
65 'python',
66 '<(dl_files_script)',
67 '--files',
68 '<(files_list)',
69 '--output_folder',
70 '<(output_folder)',
71 ],
72 'message': 'Downloading required Remoting test files.',
73 },
74 ],
50 }, # target_name: 'chromoting_integration_tests_run' 75 }, # target_name: 'chromoting_integration_tests_run'
51 ], 76 ],
52 }], 77 }],
53 ], 78 ],
54 } 79 }
OLDNEW
« testing/chromoting/download_test_files.py ('K') | « testing/chromoting/download_test_files.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698