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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sdk_build/build_sdk.py ('k') | sdk_build/pylib/__init__.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk_build/data/cpp/cpp.sdk
diff --git a/sdk_build/data/cpp/cpp.sdk b/sdk_build/data/cpp/cpp.sdk
new file mode 100644
index 0000000000000000000000000000000000000000..f6f4cec313da44ea61857cdb1088a7127ae83e4f
--- /dev/null
+++ b/sdk_build/data/cpp/cpp.sdk
@@ -0,0 +1,20 @@
+# Copyright 2016 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 file contains steps for "building" a C/C++ SDK. It is processed by
+# //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
+# TODO(vtl): This isn't done yet.
+
+EXCLUDE_FILES=[".*", "*.gn", "*.gni", "PRESUBMIT.py", "*_win.*"]
+EXCLUDE_PATHS=["*/tests/"]
+
+CopyFiles("mojo/public/c", "third_party/mojo/public/c", recursive=True,
+ exclude_file_patterns=EXCLUDE_FILES,
+ exclude_path_patterns=EXCLUDE_PATHS)
+CopyFiles("mojo/public/cpp", "third_party/mojo/public/cpp", recursive=True,
+ exclude_file_patterns=EXCLUDE_FILES,
+ exclude_path_patterns=EXCLUDE_PATHS+
+ ["mojo/public/cpp/test_support/*"])
+CopyFiles("mojo/public", "third_party/mojo/public", recursive=False,
+ exclude_file_patterns=EXCLUDE_FILES)
« 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