Fix emulator build error
[platform/framework/web/chromium-efl.git] / components / search / search_unittest.cc
1 // Copyright 2014 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "components/search/search.h"
6
7 #include "build/build_config.h"
8 #include "testing/gtest/include/gtest/gtest.h"
9
10 namespace search {
11
12 #if !BUILDFLAG(IS_IOS) && !BUILDFLAG(IS_ANDROID)
13
14 TEST(SearchTest, InstantExtendedAPIEnabled) {
15   EXPECT_TRUE(IsInstantExtendedAPIEnabled());
16 }
17
18 #endif  // !BUILDFLAG(IS_IOS) && !BUILDFLAG(IS_ANDROID)
19
20 }  // namespace search