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, |
+ }, |
+] |