OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 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 source_set("extension_view") { |
5 import("//build/config/features.gni") | |
6 | |
7 static_library("common") { | |
8 sources = [ | 5 sources = [ |
9 "browser_sync_switches.cc", | 6 "extension_view_internal_api.cc", |
10 "browser_sync_switches.h", | 7 "extension_view_internal_api.h", |
11 ] | 8 ] |
12 | 9 |
13 deps = [ | 10 deps = [ |
14 "//base", | 11 "//content/public/browser", |
| 12 "//skia", |
15 ] | 13 ] |
16 } | 14 } |
OLD | NEW |