Chromium Code Reviews| Index: components/app_modal_dialogs/BUILD.gn |
| diff --git a/components/app_modal_dialogs/BUILD.gn b/components/app_modal_dialogs/BUILD.gn |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..f8bb3befb12d346a54f0728bd045f5e277f7b296 |
| --- /dev/null |
| +++ b/components/app_modal_dialogs/BUILD.gn |
| @@ -0,0 +1,31 @@ |
| +# Copyright 2014 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. |
| + |
| +import("//build/config/ui.gni") |
| + |
| +static_library("app_modal_dialogs") { |
| + sources = [ |
| + "app_modal_dialog.cc", |
| + "app_modal_dialog.h", |
| + "app_modal_dialog_test_util.h", |
| + "app_modal_dialog_queue.cc", |
| + "app_modal_dialog_queue.h", |
| + "javascript_app_modal_dialog.cc", |
| + "javascript_app_modal_dialog.h", |
| + "native_app_modal_dialog.h" |
| + ] |
| + |
| + deps = [ |
| + "//components/strings", |
| + "//content/public/browser", |
| + "//content/public/common", |
|
msw
2014/10/22 22:53:32
Is this needed for content/public/browser? Is an e
|
| + "//extensions/common", |
|
msw
2014/10/22 22:53:32
Where is extensions used at all? Ditto for the dep
oshima
2014/10/23 00:44:12
They're in javascript_dialog_manager. I moved that
msw
2014/10/23 18:41:21
Acknowledged.
|
| + "//extensions/strings", |
| + "//skia", |
|
msw
2014/10/22 22:53:32
Is this needed for ui/gfx or something? Why is an
oshima
2014/10/23 00:44:12
This is for SkMatrix44.h which is included via aur
msw
2014/10/23 18:41:21
Acknowledged.
|
| + ] |
| + |
| + if (use_aura) { |
| + deps += [ "//ui/aura" ] |
| + } |
| +} |