| 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 |
| 5 static_library("open_from_clipboard") { | 5 static_library("open_from_clipboard") { |
| 6 sources = [ | 6 sources = [ |
| 7 "clipboard_recent_content.cc", | 7 "clipboard_recent_content.cc", |
| 8 "clipboard_recent_content.h", | 8 "clipboard_recent_content.h", |
| 9 "clipboard_recent_content_ios.h", | 9 "clipboard_recent_content_ios.h", |
| 10 "clipboard_recent_content_ios.mm", | 10 "clipboard_recent_content_ios.mm", |
| 11 ] | 11 ] |
| 12 | 12 |
| 13 if (!is_ios) { | 13 if (!is_ios) { |
| 14 sources += [ | 14 sources += [ |
| 15 "clipboard_recent_content_generic.cc", | 15 "clipboard_recent_content_generic.cc", |
| 16 "clipboard_recent_content_generic.h", | 16 "clipboard_recent_content_generic.h", |
| 17 ] | 17 ] |
| 18 } | 18 } |
| 19 | 19 |
| 20 deps = [ | 20 deps = [ |
| 21 "//base", | 21 "//base", |
| 22 "//components/variations", |
| 22 "//ui/base:base", | 23 "//ui/base:base", |
| 23 "//url", | 24 "//url", |
| 24 ] | 25 ] |
| 25 } | 26 } |
| 26 | 27 |
| 27 static_library("test_support") { | 28 static_library("test_support") { |
| 28 testonly = true | 29 testonly = true |
| 29 sources = [ | 30 sources = [ |
| 30 "fake_clipboard_recent_content.cc", | 31 "fake_clipboard_recent_content.cc", |
| 31 "fake_clipboard_recent_content.h", | 32 "fake_clipboard_recent_content.h", |
| (...skipping 17 matching lines...) Expand all Loading... |
| 49 } | 50 } |
| 50 | 51 |
| 51 deps = [ | 52 deps = [ |
| 52 ":open_from_clipboard", | 53 ":open_from_clipboard", |
| 53 "//base", | 54 "//base", |
| 54 "//testing/gtest", | 55 "//testing/gtest", |
| 55 "//ui/base:test_support", | 56 "//ui/base:test_support", |
| 56 "//url", | 57 "//url", |
| 57 ] | 58 ] |
| 58 } | 59 } |
| OLD | NEW |