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

Side by Side Diff: sdk_build/data/cpp/cpp.sdk

Issue 1701323003: Add the beginnings of scripts to produce SDKs. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: 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 | « sdk_build/build_sdk.py ('k') | sdk_build/pylib/__init__.py » ('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 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 # This file contains steps for "building" a C/C++ SDK. It is processed by
6 # //mojo/sdk_build/build_sdk.py.
vardhan 2016/02/17 21:10:44 should you mention that this spec doesn't include
viettrungluu 2016/02/17 21:28:55 This all falls under the "This isn't done yet" TOD
7 # TODO(vtl): This isn't done yet.
8
9 EXCLUDE_FILES=[".*", "*.gn", "*.gni", "PRESUBMIT.py", "*_win.*"]
10 EXCLUDE_PATHS=["*/tests/"]
11
12 CopyFiles("mojo/public/c", "third_party/mojo/public/c", recursive=True,
13 exclude_file_patterns=EXCLUDE_FILES,
14 exclude_path_patterns=EXCLUDE_PATHS)
15 CopyFiles("mojo/public/cpp", "third_party/mojo/public/cpp", recursive=True,
16 exclude_file_patterns=EXCLUDE_FILES,
17 exclude_path_patterns=EXCLUDE_PATHS+
18 ["mojo/public/cpp/test_support/*"])
19 CopyFiles("mojo/public", "third_party/mojo/public", recursive=False,
20 exclude_file_patterns=EXCLUDE_FILES)
OLDNEW
« no previous file with comments | « sdk_build/build_sdk.py ('k') | sdk_build/pylib/__init__.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698