blob: d776ada597cc8f3956768e2845811c3778b031ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# Copyright 2016 The Chromium Authors
# 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",
]
public_deps = [ "//base" ]
}
|