blob: 77a0554f54ff024c92e5805678b68f2d5a66637f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# 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.
if (is_win) {
copy("default_extensions") {
sources = [
"external_extensions.json",
]
outputs = [
"$root_out_dir/extensions/{{source_file_part}}",
]
}
} else {
# No-op on non-Windows.
group("default_extensions") {
}
}
|