Chromium Code Reviews| Index: components/bubble/BUILD.gn |
| diff --git a/components/bubble/BUILD.gn b/components/bubble/BUILD.gn |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..167f255e049690b2f316a6ab274f41be14ea2929 |
| --- /dev/null |
| +++ b/components/bubble/BUILD.gn |
| @@ -0,0 +1,35 @@ |
| +# Copyright 2015 The Chromium Authors. All rights reserved. |
| +# Use of this source code is governed by a BSD-style license that can be |
| +# found in the LICENSE file. |
| + |
| +static_library("bubble") { |
| + sources = [ |
| + "bubble_close_reason.h", |
| + "bubble_controller.cc", |
| + "bubble_controller.h", |
| + "bubble_delegate.cc", |
| + "bubble_delegate.h", |
| + "bubble_manager.cc", |
| + "bubble_manager.h", |
| + "bubble_ui.h", |
| + ] |
| + |
| + deps = [ |
| + "//ui/gfx", |
| + "//content/public/browser", |
|
msw
2015/08/27 18:41:13
You can also remove this now.
hcarmona
2015/08/27 20:25:42
Done.
|
| + ] |
| +} |
| + |
| +source_set("unit_tests") { |
| + testonly = true |
| + |
| + sources = [ |
| + "bubble_manager_unittest.cc", |
| + ] |
| + |
| + deps = [ |
| + ":bubble", |
| + "//testing/gmock", |
| + "//testing/gtest", |
| + ] |
| +} |