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

Side by Side Diff: components/offline_pages/content/background_loader/BUILD.gn

Issue 2481443002: Implementation (cc file) for background loader contents. (Closed)
Patch Set: Format and build Created 4 years, 1 month 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
1 # Copyright 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 source_set("app_current_window_internal") { 5 if (is_android) {
6 import("//build/config/android/rules.gni")
7 }
8
9 static_library("background_loader") {
dewittj 2016/11/08 00:16:39 do we want this to be a library or a source_set?
chili 2016/11/10 22:05:07 I don't know, but the style guide seems to say tha
dewittj 2016/11/14 16:36:36 The app_current_... is due to Git similarity match
6 sources = [ 10 sources = [
7 "app_current_window_internal_api.cc", 11 "background_loader_contents.cc",
8 "app_current_window_internal_api.h", 12 "background_loader_contents.h",
9 ] 13 ]
10 14
11 deps = [ 15 deps = [
12 "//content/public/browser", 16 "//content/public/browser",
13 "//extensions/common/api", 17 "//url",
14 ] 18 ]
15 } 19 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698