mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
29 lines
603 B
Plaintext
29 lines
603 B
Plaintext
|
# Copyright 2017 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.
|
||
|
|
||
|
mei_preload_sources = [
|
||
|
"manifest.json",
|
||
|
"preloaded_data.pb",
|
||
|
]
|
||
|
|
||
|
mei_preload_out_dir = "MEIPreload"
|
||
|
|
||
|
copy("component") {
|
||
|
sources = mei_preload_sources
|
||
|
|
||
|
outputs = [
|
||
|
"$root_out_dir/$mei_preload_out_dir/{{source_file_part}}",
|
||
|
]
|
||
|
}
|
||
|
|
||
|
if (is_mac) {
|
||
|
bundle_data("component_bundle") {
|
||
|
sources = mei_preload_sources
|
||
|
|
||
|
outputs = [
|
||
|
"{{bundle_contents_dir}}/Libraries/$mei_preload_out_dir/{{source_file_part}}",
|
||
|
]
|
||
|
}
|
||
|
}
|