fixup! [M108 Migration][WRTjs] Introduce VconfHandle
[platform/framework/web/chromium-efl.git] / tizen_src / chromium_impl / tizen / BUILD.gn
1 # Copyright (c) 2015 Samsung Electronics. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 import("//tizen_src/build/config/tizen_features.gni")
6
7 static_library("system-info") {
8   configs += [ "//tizen_src/build:capi-system-info" ]
9   configs += [ "//tizen_src/build:libcapi-system-info" ]
10   public_configs = [ "//tizen_src/build:capi-system-info-public" ]
11
12   sources = [
13     "system_info.cc",
14     "system_info.h",
15   ]
16   if (is_tizen) {
17     sources += [
18       "vconf_handle.cc",
19       "vconf_handle.h",
20     ]
21     deps = [ "//base" ]
22   }
23 }