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

Unified Diff: mandoline/tools/data/FILES.cfg

Issue 1420273004: Add FILES.cfg for Mandoline build archiving. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Simplify tags, add platform and dir; add android and linux files. Created 5 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mandoline/tools/data/FILES.cfg
diff --git a/mandoline/tools/data/FILES.cfg b/mandoline/tools/data/FILES.cfg
new file mode 100644
index 0000000000000000000000000000000000000000..43b7fcc47333c6e273c8d465fc8ac94e96c97c78
--- /dev/null
+++ b/mandoline/tools/data/FILES.cfg
@@ -0,0 +1,58 @@
+# -*- python -*-
+# ex: set syntax=python:
+
+# Copyright 2015 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+# This is a buildbot configuration file containing a tagged list of files
+# processed by the chromium_mojo.py recipe. The known tags are:
+#
+# filepath: Path of the file in the build output directory.
+# platforms: List of platform[s] for which the file should be processed.
+# Acceptable list values are 'android', 'linux', and 'win'.
+# directory: Flag marking the path as a directory to be copied recursively.
+# The default value is False.
+
+FILES = [
+ {
+ 'filepath': 'apks/Mandoline.apk',
+ 'platforms': ['android'],
+ },
+ {
+ 'filepath': 'core_services',
+ 'platforms': ['linux', 'win'],
+ 'directory': True,
+ },
+ {
+ 'filepath': 'd3dcompiler_47.dll',
+ 'platforms': ['win'],
+ },
+ {
+ 'filepath': 'desktop_ui',
+ 'platforms': ['linux', 'win'],
+ 'directory': True,
+ },
+ {
+ 'filepath': 'html_viewer',
+ 'platforms': ['linux', 'win'],
+ 'directory': True,
+ },
+ {
+ 'filepath': 'libmedia_library.so',
+ 'platforms': ['linux'],
+ },
+ {
+ 'filepath': 'mandoline',
+ 'platforms': ['linux'],
+ },
+ {
+ 'filepath': 'mandoline.exe',
+ 'platforms': ['win'],
+ },
+ {
+ 'filepath': 'mus',
+ 'platforms': ['linux', 'win'],
+ 'directory': True,
+ },
+]
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698