forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBUILD.gn
More file actions
32 lines (28 loc) · 968 Bytes
/
BUILD.gn
File metadata and controls
32 lines (28 loc) · 968 Bytes
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
# Copyright 2018 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_fuchsia)
# Used by the top-level "gn_all" target to discover Fuchsia build targets.
group("gn_all") {
testonly = true
deps = [
"base:cr_fuchsia_base_unittests",
"engine:web_engine",
"engine:web_engine_browsertests",
"engine:web_engine_shell",
"engine:web_engine_unittests",
"mojom:fuchsia_mojo_unittests",
"release:fuchsia_sizes",
"runners:cast_runner",
"runners:cast_runner_browsertests",
"runners:cast_runner_integration_tests",
"runners:cast_runner_unittests",
"runners:web_runner",
"//chromecast/bindings:bindings_manager_fuchsia",
# Ensure this target, which is used by cipd, is built in all configurations.
"//media/cdm/library_cdm/clear_key_cdm:clear_key_cdm",
]
if (is_official_build) {
deps += [ "cipd" ]
}
}