blob: d700690a762edab8d79184acffab81a8b6d3f897 (
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 2014 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("//build/config/features.gni")
# GYP version: chrome/chrome_resources.gyp:chrome_resources
group("resources") {
deps = [
# Note: GYP lists some dependencies in addition to these actions. However,
# these are just dependencies for the actions themselves, which our actions
# list individually when needed.
"//chrome/browser:resources",
"//chrome/common:resources",
"//chrome/renderer:resources",
]
if (enable_extensions) {
deps += [ "//chrome/common:extensions_api_resources" ]
}
}
# GYP version: chrome/chrome_resources.gyp:chrome_strings
group("strings") {
deps = [
"//chrome/app:chromium_strings",
"//chrome/app:generated_resources",
"//chrome/app:google_chrome_strings",
"//chrome/app/resources:locale_settings",
]
}
|