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

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: 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 'input_files': './test_files.txt',
joedow 2015/07/13 19:10:12 Does it make sense to have a single file which has
anandc 2015/07/14 01:03:07 Good suggestion. I tried listing the files as a va
56 'output_folder': './',
57 },
58 'inputs': [
59 '<(input_files)',
60 ],
61 'outputs': [
62 '<(output_folder)',
63 ],
64 'action': [
65 'python',
66 '<(dl_files_script)',
67 '--input_files',
68 '<(input_files)',
69 '--output_folder',
70 '<(output_folder)',
71 ],
72 'message': 'Downloading required Remoting test files.',
joedow 2015/07/13 19:10:12 I think message should say "Downloading required c
anandc 2015/07/14 01:03:07 Done.
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

Powered by Google App Engine
This is Rietveld 408576698