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

Side by Side Diff: components/browsing_data/BUILD.gn

Issue 2127403002: Make browsing_data component a layered component (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed output_name from components/browsing_data/content/BUILD.gn Created 4 years, 5 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
« no previous file with comments | « components/browsing_data.gypi ('k') | components/browsing_data/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 if (is_android) {
6 import("//build/config/android/rules.gni")
7 }
8
9 static_library("browsing_data") {
10 output_name = "browsing_data"
11 sources = [
12 "browsing_data_utils.cc",
13 "browsing_data_utils.h",
14 "conditional_cache_deletion_helper.cc",
15 "conditional_cache_deletion_helper.h",
16 "counters/browsing_data_counter.cc",
17 "counters/browsing_data_counter.h",
18 "pref_names.cc",
19 "pref_names.h",
20 "storage_partition_http_cache_data_remover.cc",
21 "storage_partition_http_cache_data_remover.h",
22 ]
23
24 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
25
26 deps = [
27 "//base",
28 "//components/prefs:prefs",
29 "//content/public/browser",
30 "//net",
31 ]
32 }
33
34 if (is_android) {
35 # GYP: //components/browsing_data.gypi:browsing_data_utils_java
36 java_cpp_enum("browsing_data_utils_java") {
37 sources = [
38 "browsing_data_utils.h",
39 ]
40 }
41 }
OLDNEW
« no previous file with comments | « components/browsing_data.gypi ('k') | components/browsing_data/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698