mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
22 lines
501 B
Plaintext
22 lines
501 B
Plaintext
import("//build/buildflag_header.gni")
|
|
import("//components/reading_list/features/reading_list.gni")
|
|
|
|
buildflag_header("reading_list_buildflags") {
|
|
header = "reading_list_buildflags.h"
|
|
_enabled = is_ios && enable_reading_list
|
|
flags = [ "ENABLE_READING_LIST=$_enabled" ]
|
|
}
|
|
|
|
source_set("flags") {
|
|
sources = [
|
|
"reading_list_switches.cc",
|
|
"reading_list_switches.h",
|
|
]
|
|
deps = [
|
|
"//base",
|
|
]
|
|
public_deps = [
|
|
"//components/reading_list/features:reading_list_buildflags",
|
|
]
|
|
}
|