Merge lp:~abreu-alexandre/oxide/remove-chromedriver-build into lp:~oxide-developers/oxide/oxide.trunk

Proposed by Alexandre Abreu
Status: Merged
Merged at revision: 1373
Proposed branch: lp:~abreu-alexandre/oxide/remove-chromedriver-build
Merge into: lp:~oxide-developers/oxide/oxide.trunk
Diff against target: 84 lines (+1/-22)
5 files modified
CMakeLists.txt (+0/-8)
build/all.gyp (+1/-9)
build/cmake/OxideCommonOptions.cmake (+0/-1)
build/common.gypi (+0/-1)
build/gyp_oxide (+0/-3)
To merge this branch: bzr merge lp:~abreu-alexandre/oxide/remove-chromedriver-build
Reviewer Review Type Date Requested Status
Chris Coulson Approve
Review via email: mp+287669@code.launchpad.net

Commit message

Remove chromedriver's build.

Description of the change

Remove chromedriver's build. Upstream's build of chromedriver works well for our purpose,

To post a comment you must log in.
Revision history for this message
Chris Coulson (chrisccoulson) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'CMakeLists.txt'
--- CMakeLists.txt 2016-02-24 22:01:01 +0000
+++ CMakeLists.txt 2016-03-01 16:33:42 +0000
@@ -142,9 +142,6 @@
142 ${CHROMIUM_PRODUCT_DIR}/natives_blob.bin142 ${CHROMIUM_PRODUCT_DIR}/natives_blob.bin
143 ${CHROMIUM_PRODUCT_DIR}/snapshot_blob.bin)143 ${CHROMIUM_PRODUCT_DIR}/snapshot_blob.bin)
144set(_OXIDE_INSTALL_PROGRAMS ${CHROMIUM_PRODUCT_DIR}/${OXIDE_RENDERER})144set(_OXIDE_INSTALL_PROGRAMS ${CHROMIUM_PRODUCT_DIR}/${OXIDE_RENDERER})
145if(ENABLE_CHROMEDRIVER)
146 list(APPEND _OXIDE_INSTALL_PROGRAMS ${CHROMIUM_PRODUCT_DIR}/chromedriver)
147endif()
148set(_CHROME_SANDBOX ${CHROMIUM_PRODUCT_DIR}/chrome-sandbox)145set(_CHROME_SANDBOX ${CHROMIUM_PRODUCT_DIR}/chrome-sandbox)
149set(_OXIDE_INSTALL_LOCALEDIR ${CHROMIUM_PRODUCT_DIR}/locales)146set(_OXIDE_INSTALL_LOCALEDIR ${CHROMIUM_PRODUCT_DIR}/locales)
150147
@@ -262,11 +259,6 @@
262else()259else()
263 list(APPEND _GYP_COMMAND -Denable_plugins=0)260 list(APPEND _GYP_COMMAND -Denable_plugins=0)
264endif()261endif()
265if(ENABLE_CHROMEDRIVER)
266 list(APPEND _GYP_COMMAND -Denable_chromedriver_build=1)
267else()
268 list(APPEND _GYP_COMMAND -Denable_chromedriver_build=0)
269endif()
270if(ENABLE_TCMALLOC)262if(ENABLE_TCMALLOC)
271 list(APPEND _GYP_COMMAND -Denable_tcmalloc=1)263 list(APPEND _GYP_COMMAND -Denable_tcmalloc=1)
272else()264else()
273265
=== modified file 'build/all.gyp'
--- build/all.gyp 2016-01-18 19:58:02 +0000
+++ build/all.gyp 2016-03-01 16:33:42 +0000
@@ -22,15 +22,7 @@
22 'dependencies': [22 'dependencies': [
23 '<@(oxide_lib_target)',23 '<@(oxide_lib_target)',
24 '<@(oxide_renderer_target)',24 '<@(oxide_renderer_target)',
25 '<(DEPTH)/sandbox/sandbox.gyp:chrome_sandbox',25 '<(DEPTH)/sandbox/sandbox.gyp:chrome_sandbox'
26 ],
27 'conditions': [
28 ['enable_chromedriver_build==1', {
29 'dependencies': [
30 '<(DEPTH)/chrome/chrome.gyp:chromedriver',
31 ],
32 }
33 ]
34 ]26 ]
35 }27 }
36 ]28 ]
3729
=== modified file 'build/cmake/OxideCommonOptions.cmake'
--- build/cmake/OxideCommonOptions.cmake 2016-01-21 14:36:08 +0000
+++ build/cmake/OxideCommonOptions.cmake 2016-03-01 16:33:42 +0000
@@ -30,7 +30,6 @@
30option(ENABLE_PLUGINS30option(ENABLE_PLUGINS
31 "Enable support for PPAPI plugins. Only Flash is supported right now"31 "Enable support for PPAPI plugins. Only Flash is supported right now"
32 ON)32 ON)
33option(ENABLE_CHROMEDRIVER "Build the chromedriver binary" OFF)
34option(ENABLE_TCMALLOC "Use TCMalloc in the renderer executable" ON)33option(ENABLE_TCMALLOC "Use TCMalloc in the renderer executable" ON)
35option(USE_SYSTEM_PROTOBUF "Use the system protobuf" OFF)34option(USE_SYSTEM_PROTOBUF "Use the system protobuf" OFF)
36option(ENABLE_HYBRIS "Enable code that uses libhybris" ON)35option(ENABLE_HYBRIS "Enable code that uses libhybris" ON)
3736
=== modified file 'build/common.gypi'
--- build/common.gypi 2015-12-22 20:59:56 +0000
+++ build/common.gypi 2016-03-01 16:33:42 +0000
@@ -35,7 +35,6 @@
35 'use_libpci': 1,35 'use_libpci': 1,
36 'use_ozone': 1,36 'use_ozone': 1,
37 'toolkit_views': 0,37 'toolkit_views': 0,
38 'remoting': 0,
39 'enable_basic_printing': 0,38 'enable_basic_printing': 0,
40 'enable_print_preview': 0,39 'enable_print_preview': 0,
41 'variables': {40 'variables': {
4241
=== modified file 'build/gyp_oxide'
--- build/gyp_oxide 2015-11-12 19:17:40 +0000
+++ build/gyp_oxide 2016-03-01 16:33:42 +0000
@@ -42,9 +42,6 @@
42sys.path.insert(0, os.path.join(CHROMIUMSRCDIR, 'chrome', 'tools', 'build'))42sys.path.insert(0, os.path.join(CHROMIUMSRCDIR, 'chrome', 'tools', 'build'))
43sys.path.insert(0, os.path.join(CHROMIUMSRCDIR, 'third_party', 'WebKit', 'Source', 'build', 'scripts'))43sys.path.insert(0, os.path.join(CHROMIUMSRCDIR, 'third_party', 'WebKit', 'Source', 'build', 'scripts'))
4444
45## Needed to build chrome driver and as one of its deps pulls remoting.gyp or one of its deps
46sys.path.insert(0, os.path.join(CHROMIUMSRCDIR, 'remoting', 'tools', 'build'))
47
48sys.path.insert(0, os.path.join(os.path.dirname(__file__), "scripts"))45sys.path.insert(0, os.path.join(os.path.dirname(__file__), "scripts"))
4946
50def additional_include_files(args=[]):47def additional_include_files(args=[]):

Subscribers

People subscribed via source and target branches