summaryrefslogtreecommitdiff
path: root/chromium/components/chrome_apps/BUILD.gn
blob: 74f27a9efd38466419d66f6ec821a40391e380d7 (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 2015 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.

import("//tools/grit/grit_rule.gni")

grit("resources") {
  source = "chrome_apps_resources.grd"
  outputs = [
    "grit/chrome_apps_resources.h",
    "grit/chrome_apps_resources_map.cc",
    "grit/chrome_apps_resources_map.h",
    "chrome_apps_resources.pak",
    "chrome_apps_resources.rc",
  ]
}

component("chrome_apps") {
  sources = [
    "chrome_apps_export.h",
    "chrome_apps_resource_util.cc",
    "chrome_apps_resource_util.h",
  ]

  defines = [ "CHROME_APPS_IMPLEMENTATION" ]

  public_deps = [
    ":resources",
    "//base",
  ]
}