Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(10)

Side by Side Diff: components/reading_list/features/BUILD.gn

Issue 2859033002: [sync] Add constexpr to EnumSet (Closed)
Patch Set: Move reading list switches and buildflag to /features Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 import("//build/buildflag_header.gni")
2 import("//components/reading_list/features/reading_list.gni")
3
4 buildflag_header("reading_list_enable_flags") {
5 header = "reading_list_enable_flags.h"
6 _enabled = is_ios && enable_reading_list
7 flags = [ "ENABLE_READING_LIST=$_enabled" ]
8 }
9
10 source_set("flags") {
11 sources = [
12 "reading_list_switches.cc",
13 "reading_list_switches.h",
14 ]
15 deps = [
16 "//base",
17 ]
18 public_deps = [
19 "//components/reading_list/features:reading_list_enable_flags",
20 ]
21 }
OLDNEW
« no previous file with comments | « components/reading_list/core/reading_list_switches.cc ('k') | components/reading_list/features/reading_list.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698