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

Side by Side Diff: build/gyp_crashpad.py

Issue 426403002: Initial commit of Crashpad (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: Review fixes Created 6 years, 4 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 | « LICENSE ('k') | codereview.settings » ('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 #!/usr/bin/env python
2
3 # Copyright 2014 The Crashpad Authors. All rights reserved.
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16
17 import os
18 import sys
19
20 script_dir = os.path.dirname(__file__)
21 crashpad_dir = os.path.dirname(script_dir) if script_dir is not '' else '..'
22 sys.path.insert(
23 0, os.path.join(crashpad_dir, 'third_party', 'gyp', 'gyp', 'pylib'))
24
25 import gyp
26
27 def main(args):
28 if 'GYP_GENERATORS' not in os.environ:
29 os.environ['GYP_GENERATORS'] = 'ninja'
30
31 crashpad_dir_or_dot = crashpad_dir if crashpad_dir is not '' else '.'
32
33 args.extend(['--include', os.path.join(crashpad_dir,
34 'third_party',
35 'mini_chromium',
36 'mini_chromium',
37 'build',
38 'common.gypi')])
39 args.extend(['--depth', crashpad_dir_or_dot])
40 args.append(os.path.join(crashpad_dir, 'crashpad.gyp'))
41
42 return gyp.main(args)
43
44 if __name__ == '__main__':
45 sys.exit(main(sys.argv[1:]))
OLDNEW
« no previous file with comments | « LICENSE ('k') | codereview.settings » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698