File: BUILD.gn

package info (click to toggle)
chromium 140.0.7339.127-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 6,192,880 kB
  • sloc: cpp: 35,093,808; ansic: 7,161,670; javascript: 4,199,694; python: 1,441,797; asm: 949,904; xml: 747,503; pascal: 187,748; perl: 88,691; sh: 88,248; objc: 79,953; sql: 52,714; cs: 44,599; fortran: 24,137; makefile: 22,114; tcl: 15,277; php: 13,980; yacc: 9,000; ruby: 7,485; awk: 3,720; lisp: 3,096; lex: 1,327; ada: 727; jsp: 228; sed: 36
file content (170 lines) | stat: -rw-r--r-- 4,494 bytes parent folder | download | duplicates (4)
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
# Copyright 2025 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

import("//build/config/ui.gni")
import("//extensions/buildflags/buildflags.gni")

source_set("sync") {
  sources = [ "tab_contents_synced_tab_delegate.h" ]
  public_deps = [
    "//base",
    "//components/sessions:session_id",
    "//components/sync_sessions",
  ]

  if (!is_android) {
    sources += [
      "browser_synced_tab_delegate.h",
      "browser_synced_window_delegate.h",
      "browser_synced_window_delegates_getter.h",
      "profile_signin_confirmation_helper.h",
    ]
    public_deps += [
      "//chrome/browser/ui/browser_window",
      "//chrome/browser/ui/tabs:tab_strip_model_observer",
      "//content/public/browser",
    ]
  }

  if (toolkit_views) {
    sources += [
      "one_click_signin_links_delegate.h",
      "one_click_signin_links_delegate_impl.h",
    ]
    if (!is_chromeos) {
      sources += [ "sync_passphrase_dialog.h" ]
      public_deps += [ "//ui/base" ]
    }
  }
}

source_set("impl") {
  sources = [ "tab_contents_synced_tab_delegate.cc" ]
  deps = [
    ":sync",
    "//base",
    "//chrome/browser/profiles:profile",
    "//components/sessions",
    "//components/sync/base:features",
    "//components/sync_sessions",
    "//content/public/browser",
    "//extensions/buildflags",
  ]
  public_deps = [ "//chrome/browser:browser_public_dependencies" ]

  if (enable_extensions) {
    deps += [ "//chrome/browser/apps/app_service" ]
  }

  if (!is_android) {
    sources += [
      "browser_synced_tab_delegate.cc",
      "browser_synced_window_delegate.cc",
      "browser_synced_window_delegates_getter.cc",
      "profile_signin_confirmation_helper.cc",
    ]
    deps += [
      "//chrome/browser/sync",
      "//chrome/browser/ui/tabs:tab_strip",
      "//components/bookmarks/browser",
      "//components/browser_sync",
      "//components/history/core/browser",
    ]
  }

  if (toolkit_views) {
    sources += [ "one_click_signin_links_delegate_impl.cc" ]
    deps += [ "//chrome/common" ]

    if (!is_chromeos) {
      sources += [ "sync_passphrase_dialog.cc" ]
      deps += [
        "//chrome/browser:browser_process",
        "//components/strings",
        "//ui/base",
        "//url",
      ]
    }
  }
}

source_set("unit_tests") {
  testonly = true
  sources = [ "tab_contents_synced_tab_delegate_unittest.cc" ]
  deps = [
    ":sync",
    "//base/test:test_support",
    "//chrome/test:test_support",
    "//components/sync/base:features",
    "//components/sync/protocol",
    "//components/sync_sessions:test_support",
    "//content/public/browser",
    "//content/test:test_support",
    "//testing/gtest",
    "//third_party/blink/public/common:headers",
  ]

  if (!is_android) {
    sources += [ "profile_signin_confirmation_helper_unittest.cc" ]
    deps += [
      "//chrome/browser:browser_process",
      "//chrome/browser/extensions:test_support",
      "//chrome/browser/prefs",
      "//components/bookmarks/test",
      "//components/pref_registry",
      "//components/prefs:test_support",
      "//components/sync_preferences:test_support",
    ]
    if (is_chromeos) {
      deps += [
        "//chrome/browser/ash/login/users",
        "//chrome/browser/ash/settings:test_support",
      ]
    }

    if (is_linux || is_mac || is_win) {
      sources += [ "sync_passphrase_dialog_unittest.cc" ]
      deps += [ "//components/sync:test_support" ]
    }
  }
}

if (!is_android) {
  source_set("browser_tests") {
    testonly = true
    defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ]
    sources = [ "one_click_signin_links_delegate_impl_browsertest.cc" ]
    deps = [
      ":sync",
      "//chrome/browser/ui/tabs:tab_strip",
      "//chrome/test:test_support",
      "//chrome/test:test_support_ui",
      "//content/test:test_support",
    ]
  }

  if (!is_chromeos_device) {
    source_set("interactive_ui_tests") {
      testonly = true
      defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ]

      if (is_mac || is_linux || is_win) {
        sources = [ "sync_passphrase_dialog_browsertest.cc" ]
        deps = [
          ":sync",
          "//base",
          "//base/test:test_support",
          "//chrome/common",
          "//chrome/test:test_support_ui",
          "//content/test:test_support",
          "//testing/gtest",
          "//ui/base",
          "//ui/base:test_support",
          "//ui/views",
          "//url",
        ]
      }
    }
  }
}