c279ba437ebdf6129db776dc03ec674c032514af
[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 = 'e5698a22dd1587355fd53fa7142be15776985608'
21 blink_crosswalk_rev = '92e5d6adee53362b3f5aaec11bcb0526d5f0715d'
22 v8_crosswalk_rev = '0bb343f5ed1becef0996a234d5d7d431e60ef72a'
23 ozone_wayland_rev = 'db2f41907a6c63f8c1dfc100f4db4ce5b2259a76'
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       # These directories are not relevant to Crosswalk and can be safely ignored
54       # in a checkout. It avoids creating additional directories outside src/ that
55       # are not used and also saves some bandwidth.
56       'build': None,
57       'build/scripts/command_wrapper/bin': None,
58       'build/scripts/gsd_generate_index': None,
59       'build/scripts/private/data/reliability': None,
60       'build/scripts/tools/deps2git': None,
61       'build/third_party/cbuildbot_chromite': None,
62       'build/third_party/gsutil': None,
63       'build/third_party/lighttpd': None,
64       'build/third_party/swarm_client': None,
65       'build/third_party/xvfb': None,
66       'build/xvfb': None,
67       'commit-queue': None,
68       'depot_tools': None,
69     },
70   },
71
72   # ozone-wayland is set as a separate solution because we gclient _not_ to read
73   # its .DEPS.git: it changes the recursion limit and tries to check Chromium
74   # upstream out itself, leading to URL conflicts and errors about duplicate
75   # entries.
76   { 'name': 'src/ozone',
77     'url': ozone_wayland_git + '/ozone-wayland.git@' + ozone_wayland_rev,
78     'deps_file': '',
79   }
80 ]
81
82 # -------------------------------------------------
83 # This area is edited by generate_gclient-xwalk.py.
84 # -------------------------------------------------