Fix search results being clipped in app list.
[chromium-blink-merge.git] / extensions / browser / BUILD.gn
blobb27f773e7311b897f03943a7f024f656cfcdf3ed
1 # Copyright 2014 The Chromium Authors. 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.
5 import("//build/config/crypto.gni")
6 import("//build/config/features.gni")
7 import("//extensions/extensions.gni")
9 # GYP version: extensions/extensions.gyp:extensions_browser
10 source_set("browser") {
11   sources = []
13   deps = [
14     "//components/keyed_service/content",
15     "//components/keyed_service/core",
16     "//components/pref_registry",
17     "//components/sessions:sessions_content",
18     "//components/ui/zoom:ui_zoom",
19     "//components/web_cache/browser",
20     "//components/web_modal",
21     "//content/public/browser",
22     "//crypto:platform",
23     "//extensions/common",
24     "//extensions/common/api",
25     "//extensions/common/api:api_registration",
26     "//extensions/strings",
27     "//google_apis",
28     "//skia",
29     "//third_party/leveldatabase",
30     "//third_party/re2",
31   ]
33   # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
34   configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
36   if (enable_extensions) {
37     # Includes all API implementations and the ExtensionsApiClient
38     # interface. Moving an API from src/chrome to src/extensions implies
39     # it can be cleanly disabled with enable_extensions=false.
40     # TODO: Eventually the entire extensions module should not be built
41     # when enable_extensions=false.
42     sources = rebase_path(extensions_gypi_values.extensions_browser_sources,
43                           ".",
44                           "//extensions")
46     deps += [
47       "//components/onc",
48       "//components/storage_monitor",
49       "//components/update_client",
50       "//crypto:platform",
51       "//device/bluetooth",
52       "//device/core",
53       "//device/hid",
54       "//device/serial",
55       "//device/usb",
56       "//extensions/common/api/cast_channel:cast_channel_proto",
57     ]
59     if (is_chromeos) {
60       deps += [ "//chromeos" ]
61     }
63     if (is_chromeos) {
64       chromeos_sources = rebase_path(
65               extensions_gypi_values.extensions_browser_sources_chromeos,
66               ".",
67               "//extensions")
68       sources += chromeos_sources
69     } else {
70       nonchromeos_sources = rebase_path(
71               extensions_gypi_values.extensions_browser_sources_nonchromeos,
72               ".",
73               "//extensions")
74       sources += nonchromeos_sources
76       if (is_linux) {
77         configs += [ "//build/config/linux:dbus" ]
78         deps += [ "//dbus" ]
79         linux_sources = rebase_path(
80                 extensions_gypi_values.extensions_browser_sources_linux_nonchromeos,
81                 ".",
82                 "//extensions")
83         sources += linux_sources
84       } else {
85         if (is_win || is_mac) {
86           deps += [ "//components/wifi" ]
88           win_or_mac_sources = rebase_path(
89                   extensions_gypi_values.extensions_browser_sources_win_or_mac,
90                   ".",
91                   "//extensions")
92           sources += win_or_mac_sources
93         }
94       }
95     }
96   }