summaryrefslogtreecommitdiff
path: root/chromium/chromeos/constants/BUILD.gn
blob: 2fa3e0b7e307be214f45283eb23a08cb7873c2a6 (plain)
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
# Copyright 2019 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

assert(is_chromeos, "Non-Chrome-OS builds must not depend on //chromeos")

component("constants") {
  output_name = "chromeos_constants"
  defines = [ "IS_CHROMEOS_CONSTANTS_IMPL" ]
  deps = [
    "//base",
    "//base:i18n",
    "//build:branding_buildflags",
    "//chromeos/dbus/constants",
    "//third_party/icu",
  ]
  sources = [
    "chromeos_constants.cc",
    "chromeos_constants.h",
    "chromeos_features.cc",
    "chromeos_features.h",
    "chromeos_paths.cc",
    "chromeos_paths.h",
    "chromeos_pref_names.cc",
    "chromeos_pref_names.h",
    "chromeos_switches.cc",
    "chromeos_switches.h",
    "devicetype.cc",
    "devicetype.h",
  ]
}