Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 } |
| OLD | NEW |