Chromium Code Reviews| OLD | NEW |
|---|---|
| (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) | |
| OLD | NEW |