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..aef4445447c0b477358b84fb6894754d05a68f22 |
| --- /dev/null |
| +++ b/components/bubble/BUILD.gn |
| @@ -0,0 +1,30 @@ |
| +# 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") { |
|
blundell
2015/08/28 08:44:32
nit: source_set is preferable to static_library in
|
| + 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", |
| + ] |
| +} |
| + |
| +source_set("unit_tests") { |
| + testonly = true |
| + |
| + sources = [ |
| + "bubble_manager_unittest.cc", |
| + ] |
| + |
| + deps = [ |
| + ":bubble", |
| + "//testing/gmock", |
| + "//testing/gtest", |
| + ] |
| +} |