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

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: 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/chrome/tools/build/android/FILES.cfg b/mandoline/tools/data/FILES.cfg
similarity index 58%
copy from chrome/tools/build/android/FILES.cfg
copy to mandoline/tools/data/FILES.cfg
index a2413a6d409b518280b70b7a5dd42c83ec2d7cf1..6f0f17b0fbef276a47f21c9d95edc390cb4f0214 100644
--- a/chrome/tools/build/android/FILES.cfg
+++ b/mandoline/tools/data/FILES.cfg
@@ -1,7 +1,7 @@
# -*- python -*-
# ex: set syntax=python:
-# Copyright (c) 2013 The Chromium Authors. All rights reserved.
+# Copyright (c) 2015 The Chromium Authors. All rights reserved.
sky 2015/10/24 02:15:17 nit: no (c)
msw 2015/10/26 23:19:44 Done.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
@@ -10,9 +10,8 @@
#
# filename: Name of the file in the build output directory.
# arch: List of CPU architectures for which this file should be processed
-# (values are based on the strings returned by python's
-# platform.architecture() function). Leave unspecified for
-# architecture neutral files.
+# Leave this unspecified to process for all architectures.
+# Acceptable values are 64bit, 32bit and arm.
# buildtype: List of build types for which this file should be processed.
# archive: The name of the archive file to store filename in. If not specified,
# filename is added to the default archive (e.g. platform.zip). If
@@ -21,18 +20,32 @@
# NOTE: This flag will not apply if more than one file has the
# same 'archive' name, which will create a zip of all the
# files instead.
-# filegroup: List of named groups to which this file belongs (e.g. 'symbols'
-# for symbol processing, 'tests' for running tests, etc.).
+# filegroup: List of named groups to which this file belongs.
+# default: Legacy "default archive". TODO(mmoss): These should
+# be updated to specify an 'archive' name and then this
+# filegroup and the related archive_utils.ParseLegacyList()
+# should go away.
+# symsrc: Files to upload to the symbol server.
# optional: List of buildtypes for which the file might not exist, and it's not
# considered an error.
FILES = [
{
- 'filename': 'apks/ContentShell.apk',
- 'buildtype': ['dev', 'official'],
+ 'filename': 'core_services',
},
{
- 'filename': 'apks/ChromePublic.apk',
- 'buildtype': ['dev', 'official'],
+ 'filename': 'd3dcompiler_47.dll',
sky 2015/10/24 02:15:17 Isn't this windows only? Do you need to specify th
msw 2015/10/26 23:19:44 Done.
+ },
+ {
+ 'filename': 'desktop_ui',
+ },
+ {
+ 'filename': 'html_viewer',
+ },
+ {
+ 'filename': 'mandoline.exe',
+ },
+ {
+ 'filename': 'mus',
},
]
« 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