From patchwork Wed Nov 10 07:22:04 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Hirokazu Honda X-Patchwork-Id: 14508 Return-Path: X-Original-To: parsemail@patchwork.libcamera.org Delivered-To: parsemail@patchwork.libcamera.org Received: from lancelot.ideasonboard.com (lancelot.ideasonboard.com [92.243.16.209]) by patchwork.libcamera.org (Postfix) with ESMTPS id 2FE9DBF415 for ; Wed, 10 Nov 2021 07:22:17 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id 7E0CB6034E; Wed, 10 Nov 2021 08:22:16 +0100 (CET) Authentication-Results: lancelot.ideasonboard.com; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=chromium.org header.i=@chromium.org header.b="e2unmHV2"; dkim-atps=neutral Received: from mail-pf1-x434.google.com (mail-pf1-x434.google.com [IPv6:2607:f8b0:4864:20::434]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 737C460234 for ; Wed, 10 Nov 2021 08:22:15 +0100 (CET) Received: by mail-pf1-x434.google.com with SMTP id n85so1834177pfd.10 for ; Tue, 09 Nov 2021 23:22:15 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=chromium.org; s=google; h=from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=YE5KQnJ22RaCNYBTSjV2YzUxCwMlx+/X3tplBUGoB4Y=; b=e2unmHV2WyHoZ1gFGot7hqPZ9uNE6t7SgZXyn6Eu7QOHwwWb6MDTIlMty2NDM85TPI P+oS1v8NyzXKqggqzdEc1YDbT+s2J/SdMesp/WiR5r40Lc+zOD4q5CxIpJv2D5ySWWZB MsgrQrnLZA2vFgnt1/KB/0F3YuxCEv4eTKjRI= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=YE5KQnJ22RaCNYBTSjV2YzUxCwMlx+/X3tplBUGoB4Y=; b=eUCf4tTyUV5yN0X9FUXqTtAYWNrj6oDmCWn+EhRKDkTiV3vVrabM0PMBvm/R2hA7Y3 WRCiijqfZvutXUU1e+U1eeb8n6Hdj3tnG+DnKkkbd9R0g/DyeQPKgrEHysCHS7/ACY6z oaps3fKrFx8fMAjCt6ngeGIDPzs8yGTWLEPDSH9Fo1IT1OA/5h4SGM7etlM/modoLTyM 20UdqcHA0WdaMyNI08UQmEvGI0YKNwp5tbH0+Z5+tHeks0KpP3lpNWGfMP6Z+O3Mcir1 GyLgc5AjSItR3sblr2wpJKejBFOIPzxxJ5cgoW6TZgZSCjowMedvuWw1uRMefMV6XEE4 x/yg== X-Gm-Message-State: AOAM531Lc6kt4z2hmV/BqZK/AKL6X+nL2lZrSCIk2pU6aTxplNQFavCA aYOHUYlQPVpobh+EU5o2Q1LsYxp8PUaSuQ== X-Google-Smtp-Source: ABdhPJzUW/czDsdIFq80cqaTiSqCHBZsvsN215MH40kIpBlQEOQ8MYlbcnxjaiIur7Buq7GRNFiKiQ== X-Received: by 2002:a63:ab48:: with SMTP id k8mr10426839pgp.307.1636528933156; Tue, 09 Nov 2021 23:22:13 -0800 (PST) Received: from hiroh2.tok.corp.google.com ([2401:fa00:8f:203:4a73:e1bd:9b3f:4903]) by smtp.gmail.com with ESMTPSA id r1sm5073669pjm.23.2021.11.09.23.22.11 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 09 Nov 2021 23:22:12 -0800 (PST) From: Hirokazu Honda To: libcamera-devel@lists.libcamera.org Date: Wed, 10 Nov 2021 16:22:04 +0900 Message-Id: <20211110072207.3273703-1-hiroh@chromium.org> X-Mailer: git-send-email 2.34.0.rc0.344.g81b53c2807-goog MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH v6 1/4] lc-compliance: Build with gtest in subprojects X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" libgtest-dev is provided as a static library at least Debian 10. The compiler and linker to create the static library might be different from ones used for libcamera. This causes a problem upon linking. This puts gtest code to subprojects, builds the code and link it for lc-compliance. However, libgtest is locally built as a library on ChromeOS and thus the used compiler and linker are the same as one used for libcamera. We don't do these on ChromeOS build environment. Signed-off-by: Hirokazu Honda Tested-by: Jacopo Mondi Reviewed-by: Kieran Bingham Reviewed-by: Umang Jain --- README.rst | 2 +- src/lc-compliance/meson.build | 16 ++++++++++++++-- subprojects/.gitignore | 4 +++- subprojects/gtest.wrap | 14 ++++++++++++++ 4 files changed, 32 insertions(+), 4 deletions(-) create mode 100644 subprojects/gtest.wrap diff --git a/README.rst b/README.rst index 8af5f118..c48b4dba 100644 --- a/README.rst +++ b/README.rst @@ -99,7 +99,7 @@ for android: [optional] libexif-dev libjpeg-dev libyaml-dev for lc-compliance: [optional] - libevent-dev libgtest-dev + libevent-dev Using GStreamer plugin ~~~~~~~~~~~~~~~~~~~~~~ diff --git a/src/lc-compliance/meson.build b/src/lc-compliance/meson.build index aa5852f6..8c43ef12 100644 --- a/src/lc-compliance/meson.build +++ b/src/lc-compliance/meson.build @@ -1,15 +1,27 @@ # SPDX-License-Identifier: CC0-1.0 libevent = dependency('libevent_pthreads', required : get_option('lc-compliance')) -libgtest = dependency('gtest', required : get_option('lc-compliance')) -if not (libevent.found() and libgtest.found()) +if not libevent.found() lc_compliance_enabled = false subdir_done() endif lc_compliance_enabled = true +if get_option('android_platform') == 'cros' + libgtest = dependency('gtest', required : get_option('lc-compliance')) + + if not libgtest.found() + lc_compliance_enabled = false + subdir_done() + endif + +else + libgtest_sp = subproject('gtest') + libgtest = libgtest_sp.get_variable('gtest_dep') +endif + lc_compliance_sources = files([ '../cam/event_loop.cpp', '../cam/options.cpp', diff --git a/subprojects/.gitignore b/subprojects/.gitignore index 410b8bd6..391fde2c 100644 --- a/subprojects/.gitignore +++ b/subprojects/.gitignore @@ -1 +1,3 @@ -/libyuv \ No newline at end of file +/googletest-release* +/libyuv +/packagecache \ No newline at end of file diff --git a/subprojects/gtest.wrap b/subprojects/gtest.wrap new file mode 100644 index 00000000..40128b35 --- /dev/null +++ b/subprojects/gtest.wrap @@ -0,0 +1,14 @@ +[wrap-file] +directory = googletest-release-1.11.0 +source_url = https://github.com/google/googletest/archive/release-1.11.0.zip +source_filename = gtest-1.11.0.zip +source_hash = 353571c2440176ded91c2de6d6cd88ddd41401d14692ec1f99e35d013feda55a +patch_filename = gtest_1.11.0-1_patch.zip +patch_url = https://wrapdb.mesonbuild.com/v2/gtest_1.11.0-1/get_patch +patch_hash = d38c39184384608b08419be52aed1d0f9d9d1b5ed71c0c35e51cccbdddab7084 + +[provide] +gtest = gtest_dep +gtest_main = gtest_main_dep +gmock = gmock_dep +gmock_main = gmock_main_dep