File: BUILD.gn

package info (click to toggle)
chromium 138.0.7204.183-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 6,071,908 kB
  • sloc: cpp: 34,937,088; ansic: 7,176,967; javascript: 4,110,704; python: 1,419,953; asm: 946,768; xml: 739,971; pascal: 187,324; sh: 89,623; perl: 88,663; objc: 79,944; sql: 50,304; cs: 41,786; fortran: 24,137; makefile: 21,806; php: 13,980; tcl: 13,166; yacc: 8,925; ruby: 7,485; awk: 3,720; lisp: 3,096; lex: 1,327; ada: 727; jsp: 228; sed: 36
file content (103 lines) | stat: -rw-r--r-- 2,578 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# Copyright 2020 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

assert(is_chromeos)

source_set("local_search_service") {
  sources = [
    "content_extraction_utils.cc",
    "content_extraction_utils.h",
    "index.cc",
    "index.h",
    "inverted_index.cc",
    "inverted_index.h",
    "inverted_index_search.cc",
    "inverted_index_search.h",
    "linear_map_search.cc",
    "linear_map_search.h",
    "local_search_service.cc",
    "local_search_service.h",
    "pref_names.cc",
    "pref_names.h",
    "search_metrics_reporter.cc",
    "search_metrics_reporter.h",
    "search_utils.cc",
    "search_utils.h",
    "shared_structs.cc",
    "shared_structs.h",
  ]

  deps = [
    "//base:i18n",
    "//cc",
    "//chromeos/ash/components/local_search_service/public/mojom",
    "//chromeos/ash/components/string_matching",
  ]

  public_deps = [
    "//base",
    "//components/metrics:metrics",
    "//components/prefs",
    "//ui/gfx",
  ]
}

source_set("local_search_service_provider") {
  sources = [
    "local_search_service_provider_for_testing.cc",
    "local_search_service_provider_for_testing.h",
    "oop_local_search_service_provider.cc",
    "oop_local_search_service_provider.h",
  ]

  deps = [
    ":local_search_service",
    "//chromeos/ash/components/local_search_service/public/cpp:local_search_service_provider",
    "//chromeos/ash/components/local_search_service/public/mojom",
    "//content/public/browser:browser",
  ]
}

source_set("test_support") {
  testonly = true

  sources = [
    "test_utils.cc",
    "test_utils.h",
  ]

  deps = [
    ":local_search_service",
    "//testing/gtest",
  ]
}

source_set("unit_tests") {
  testonly = true

  sources = [
    "content_extraction_utils_unittest.cc",
    "inverted_index_search_unittest.cc",
    "inverted_index_unittest.cc",
    "linear_map_search_unittest.cc",
    "local_search_service_provider_unittest.cc",
    "local_search_service_proxy_unittest.cc",
    "local_search_service_unittest.cc",
    "search_metrics_reporter_unittest.cc",
    "search_utils_unittest.cc",
  ]

  deps = [
    ":local_search_service",
    ":local_search_service_provider",
    ":test_support",
    "//base/test:test_support",
    "//chromeos/ash/components/local_search_service/public/cpp",
    "//chromeos/ash/components/local_search_service/public/cpp:local_search_service_provider",
    "//components/prefs:test_support",
    "//content/test:test_support",
    "//mojo/public/cpp/bindings:bindings",
    "//testing/gtest",
  ]
}