fixup! Move EWK implementation code into ewk/ directory where it belongs.
authorPiotr Tworek <p.tworek@samsung.com>
Fri, 6 Mar 2015 03:05:08 +0000 (12:05 +0900)
committerYoungsoo Choi <kenshin.choi@samsung.com>
Tue, 10 Jul 2018 06:57:09 +0000 (06:57 +0000)
Fix building EWK unit tests. Some trivial gyp changes make the code
buildable once again.

Change-Id: Id6077020d4c4ebb863087a7294284f06e42b15a0
Signed-off-by: Piotr Tworek <p.tworek@samsung.com>
tizen_src/build/system.gyp
tizen_src/ewk/unittest/ewk-tests.gypi

index 8e61e51..d52ef97 100644 (file)
       },
     }, # elementary
     {
+      'target_name': 'edje',
+      'type': 'none',
+      'direct_dependent_settings': {
+        'cflags': [
+          '<!@(<(pkg-config) --cflags edje)',
+        ],
+      },
+      'link_settings': {
+        'ldflags': [
+          '<!@(<(pkg-config) --libs-only-L --libs-only-other edje)',
+        ],
+        'libraries': [
+          '<!@(<(pkg-config) --libs-only-l edje)',
+        ],
+      },
+    }, # edje
+    {
       'target_name': 'efl-assist',
       'type': 'none',
       'conditions': [
index f56a691..04afc7f 100644 (file)
@@ -3,6 +3,9 @@
     'target_name': 'ewk_unittests',
     'type': '<(gtest_target_type)',
     'dependencies': [
+      '<(DEPTH)/tizen_src/build/system.gyp:ecore-evas',
+      '<(DEPTH)/tizen_src/build/system.gyp:edje',
+      '<(DEPTH)/tizen_src/build/system.gyp:elementary',
       '<(DEPTH)/testing/gtest.gyp:gtest',
       'chromium-ewk',
     ],