13 lines
268 B
Python
13 lines
268 B
Python
#!/usr/bin/python2
|
|
# Copyright 2013 Google Inc. All rights reserved.
|
|
|
|
# cdm_platforms.py --- Supported platforms
|
|
# Modify this file to extend the platforms that can be built by build.py
|
|
|
|
platforms = {
|
|
'x86-64': {
|
|
'folder': 'x86-64',
|
|
'file': 'x86-64',
|
|
},
|
|
}
|