mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
29 lines
757 B
Plaintext
29 lines
757 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.
|
|
|
|
import("//ios/build/config.gni")
|
|
|
|
source_set("js") {
|
|
deps = [
|
|
"//base",
|
|
"//ios/web/public",
|
|
"//ios/web/web_state/ui:crw_wk_script_message_router",
|
|
]
|
|
|
|
sources = [
|
|
"crw_js_injection_manager.mm",
|
|
"crw_js_injection_receiver.mm",
|
|
"crw_js_plugin_placeholder_manager.h",
|
|
"crw_js_plugin_placeholder_manager.mm",
|
|
"crw_js_post_request_loader.h",
|
|
"crw_js_post_request_loader.mm",
|
|
"crw_js_window_id_manager.h",
|
|
"crw_js_window_id_manager.mm",
|
|
"page_script_util.h",
|
|
"page_script_util.mm",
|
|
]
|
|
|
|
configs += [ "//build/config/compiler:enable_arc" ]
|
|
}
|