blob: d89170a2c0ea40babef63af15ad66d3fe7e10db1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# Copyright 2016 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("//build/config/ios/rules.gni")
source_set("feature_flags") {
configs += [ "//build/config/compiler:enable_arc" ]
sources = [
"ui_feature_flags.cc",
"ui_feature_flags.h",
]
deps = [ "//base" ]
}
|