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

Side by Side Diff: mandoline/tools/data/FILES.cfg

Issue 1677293002: Bye bye Mandoline (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: moar Created 4 years, 10 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
« no previous file with comments | « mandoline/tools/android/run_mandoline.py ('k') | mandoline/ui/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # -*- python -*-
2 # ex: set syntax=python:
3
4 # Copyright 2015 The Chromium Authors. All rights reserved.
5 # Use of this source code is governed by a BSD-style license that can be
6 # found in the LICENSE file.
7
8 # This is a buildbot configuration file containing a tagged list of files
9 # processed by the chromium_mojo.py recipe. The known tags are:
10 #
11 # filepath: Path of the file in the build output directory.
12 # platforms: List of platform[s] for which the file should be processed.
13 # Acceptable list values are 'android', 'linux', and 'win'.
14 # directory: Flag marking the path as a directory to be copied recursively.
15 # The default value is False.
16
17 FILES = [
18 {
19 'filepath': 'apks/Mandoline.apk',
20 'platforms': ['android'],
21 },
22 {
23 'filepath': 'core_services',
24 'platforms': ['linux', 'win'],
25 'directory': True,
26 },
27 {
28 'filepath': 'd3dcompiler_47.dll',
29 'platforms': ['win'],
30 },
31 {
32 'filepath': 'desktop_ui',
33 'platforms': ['linux', 'win'],
34 'directory': True,
35 },
36 {
37 'filepath': 'html_viewer',
38 'platforms': ['linux', 'win'],
39 'directory': True,
40 },
41 {
42 'filepath': 'icudtl.dat',
43 'platforms': ['linux', 'win'],
44 },
45 {
46 'filepath': 'mandoline',
47 'platforms': ['linux'],
48 },
49 {
50 'filepath': 'mandoline.exe',
51 'platforms': ['win'],
52 },
53 {
54 'filepath': 'omnibox',
55 'platforms': ['linux', 'win'],
56 'directory': True,
57 },
58 {
59 'filepath': 'pdf_viewer',
60 'platforms': ['linux', 'win'],
61 'directory': True,
62 },
63 ]
OLDNEW
« no previous file with comments | « mandoline/tools/android/run_mandoline.py ('k') | mandoline/ui/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698