Clean up DEPS and python scripts
[platform/framework/web/chromium-efl.git] / tizen_src / DEPS.efl
1 # Source code dependencies required for building Chromium-efl.
2 #
3 # This file is used as a template to generate .gclient-efl, which is a
4 # regular .gclient file pointing to additional source code repositories that
5 # need to be checked out in order to build Chromium-efl.
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 # Chromium-efl dependencies.
17 # Edit these when rolling DEPS.efl.
18 # -----------------------------------
19
20 ozone_wayland_rev = 'bd769b47008882f3d0fcb78070415a5ef2700032'
21
22 # |blink_upstream_rev| indicates the revision of the latest upstream commit in
23 # the s-blink repository, so that the devtools code can use it to fetch
24 # assets from Chromium's servers with a revision that exists there. We need an
25 # SVN revision while Blink is still in SVN.
26 blink_upstream_rev = '191638' #TODO(TK) : need to update revision number
27
28 efl_integration_branch = 'origin/beta/m42_2311_t'
29 ct_git = 'ssh://165.213.202.130:29418/webplatform'
30
31 ozone_wayland_git = 'https://github.com/01org'
32
33 # ------------------------------------------------------
34 # gclient solutions.
35 # You do not need to worry about these most of the time.
36 # ------------------------------------------------------
37
38 solutions = [
39   { 'name': 'src',
40     'url': ct_git + '/s-chromium.git@' + efl_integration_branch,
41     'deps_file': 'DEPS',
42     'custom_deps': {
43       'src':
44         ct_git + '/s-chromium.git@' + efl_integration_branch,
45       'src/third_party/WebKit':
46         ct_git + '/s-blink.git@' + efl_integration_branch,
47       'src/third_party/skia':
48         ct_git + '/s-skia.git@' + efl_integration_branch,
49       'src/third_party/webrtc':
50         ct_git + '/s-webrtc.git@' + efl_integration_branch,
51       'src/third_party/libjingle/source/talk':
52         ct_git + '/s-libjingle_source_talk.git@' + efl_integration_branch,
53       'src/v8':
54         ct_git + '/s-v8.git@' + efl_integration_branch,
55
56       # Include OpenCL header files for WebCL support, target version 1.2.
57       'src/third_party/khronos/CL':
58         'https://cvs.khronos.org/svn/repos/registry/trunk/public/cl/api/1.2@'
59            '28150',
60
61       # These directories are not relevant to Chromium-efl and can be safely ignored
62       # in a checkout. It avoids creating additional directories outside src/ that
63       # are not used and also saves some bandwidth.
64       'build': None,
65       'build/scripts/command_wrapper/bin': None,
66       'build/scripts/gsd_generate_index': None,
67       'build/scripts/private/data/reliability': None,
68       'build/scripts/tools/deps2git': None,
69       'build/third_party/cbuildbot_chromite': None,
70       'build/third_party/gsutil': None,
71       'build/third_party/lighttpd': None,
72       'build/third_party/swarm_client': None,
73       'build/third_party/xvfb': None,
74       'build/xvfb': None,
75       'commit-queue': None,
76       'depot_tools': None,
77     },
78
79     'custom_hooks': [
80       # Disable Chromium's "gyp" hooks, which runs the gyp_chromium script. We
81       # are not interested in running it as we use gyp_chromiumefl instead (and it is
82       # run at a later stage as a hook in Chromium-efl's own DEPS).
83       {
84         'name': 'gyp',
85       },
86     ],
87   },
88
89   # ozone-wayland is set as a separate solution because we gclient _not_ to read
90   # its .DEPS.git: it changes the recursion limit and tries to check Chromium
91   # upstream out itself, leading to URL conflicts and errors about duplicate
92   # entries.
93   { 'name': 'src/ozone',
94     'url': ozone_wayland_git + '/ozone-wayland.git@' + ozone_wayland_rev,
95     'deps_file': '',
96   }
97 ]
98
99 hooks = [
100   {
101     'action': [
102       'python',
103       'src/xwalk/tools/upstream_revision.py',
104       '-r',
105       blink_upstream_rev,
106       '-o',
107       'src/xwalk/build/UPSTREAM.blink'
108     ],
109     'pattern': '.',
110     'name': 'upstream_revision'
111   }
112 ]
113
114 # -------------------------------------------------
115 # This area is edited by generate_gclient-efl.py.
116 # -------------------------------------------------