Upstream version 10.38.217.0
[platform/framework/web/crosswalk.git] / src / xwalk / DEPS.xwalk
1 # Source code dependencies required for building Crosswalk.
2 #
3 # This file is used as a template to generate .gclient-xwalk, which is a
4 # regular .gclient file pointing to additional source code repositories that
5 # need to be checked out in order to build Crosswalk.
6 #
7 # These dependencies are not specified in DEPS for historical compatibility
8 # reasons and also to allow us to perform some additional manipulation on some
9 # entries (such as setting a custom value for "deps_file" in certain
10 # solutions).
11 #
12 # If you are doing a DEPS roll, you should only need to worry about the *_rev
13 # variables below.
14
15 # -----------------------------------
16 # Crosswalk dependencies.
17 # Edit these when rolling DEPS.xwalk.
18 # -----------------------------------
19
20 chromium_crosswalk_rev = '66c669af8a18cf8d4aa2cc8b798d27e8e1a2feae'
21 blink_crosswalk_rev = 'bc7b6c17bc9634579c6df664d04fdf38a1edd56a'
22 v8_crosswalk_rev = '452135ceb9d31a6bc30fb39bf743623e0f553afa'
23 ozone_wayland_rev = '113c32025bee544ee34460ce3a29497e69024cee'
24
25 crosswalk_git = 'https://github.com/crosswalk-project'
26 ozone_wayland_git = 'https://github.com/01org'
27
28 # ------------------------------------------------------
29 # gclient solutions.
30 # You do not need to worry about these most of the time.
31 # ------------------------------------------------------
32
33 solutions = [
34   { 'name': 'src',
35     'url': crosswalk_git + '/chromium-crosswalk.git@' + chromium_crosswalk_rev,
36     'deps_file': '.DEPS.git',
37     'custom_deps': {
38       'src':
39         crosswalk_git + '/chromium-crosswalk.git@' + chromium_crosswalk_rev,
40       'src/third_party/WebKit':
41         crosswalk_git + '/blink-crosswalk.git@' + blink_crosswalk_rev,
42       'src/v8':
43         crosswalk_git + '/v8-crosswalk.git@' + v8_crosswalk_rev,
44
45       # Temporarily switch to a more recent WebRTC version that includes its
46       # r6909, which, together with r6853, fixes the problems described in
47       # XWALK-2160.
48       # See also: https://code.google.com/p/webrtc/issues/detail?id=3625
49       'src/third_party/webrtc':
50         'https://chromium.googlesource.com/external/webrtc/trunk/webrtc.git@'
51            'cdc312345fcdfc586a7c8cd720407449cc0bdcd2',
52
53       # Include OpenCL header files for WebCL support, target version 1.2.
54       'src/third_party/khronos/CL':
55         'https://cvs.khronos.org/svn/repos/registry/trunk/public/cl/api/1.2@'
56            '28150',
57
58       # These directories are not relevant to Crosswalk and can be safely ignored
59       # in a checkout. It avoids creating additional directories outside src/ that
60       # are not used and also saves some bandwidth.
61       'build': None,
62       'build/scripts/command_wrapper/bin': None,
63       'build/scripts/gsd_generate_index': None,
64       'build/scripts/private/data/reliability': None,
65       'build/scripts/tools/deps2git': None,
66       'build/third_party/cbuildbot_chromite': None,
67       'build/third_party/gsutil': None,
68       'build/third_party/lighttpd': None,
69       'build/third_party/swarm_client': None,
70       'build/third_party/xvfb': None,
71       'build/xvfb': None,
72       'commit-queue': None,
73       'depot_tools': None,
74     },
75   },
76
77   # ozone-wayland is set as a separate solution because we gclient _not_ to read
78   # its .DEPS.git: it changes the recursion limit and tries to check Chromium
79   # upstream out itself, leading to URL conflicts and errors about duplicate
80   # entries.
81   { 'name': 'src/ozone',
82     'url': ozone_wayland_git + '/ozone-wayland.git@' + ozone_wayland_rev,
83     'deps_file': '',
84   }
85 ]
86
87 # -------------------------------------------------
88 # This area is edited by generate_gclient-xwalk.py.
89 # -------------------------------------------------