Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | |
| 2 # Use of this source code is governed by a BSD-style license that can be | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 import("//build/config/ui.gni") | |
| 6 | |
| 7 static_library("app_modal_dialogs") { | |
| 8 sources = [ | |
| 9 "app_modal_dialog.cc", | |
| 10 "app_modal_dialog.h", | |
| 11 "app_modal_dialog_test_util.h", | |
| 12 "app_modal_dialog_queue.cc", | |
| 13 "app_modal_dialog_queue.h", | |
| 14 "javascript_app_modal_dialog.cc", | |
| 15 "javascript_app_modal_dialog.h", | |
| 16 "native_app_modal_dialog.h" | |
| 17 ] | |
| 18 | |
| 19 deps = [ | |
| 20 "//components/strings", | |
| 21 "//content/public/browser", | |
| 22 "//content/public/common", | |
|
msw
2014/10/22 22:53:32
Is this needed for content/public/browser? Is an e
| |
| 23 "//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.
| |
| 24 "//extensions/strings", | |
| 25 "//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.
| |
| 26 ] | |
| 27 | |
| 28 if (use_aura) { | |
| 29 deps += [ "//ui/aura" ] | |
| 30 } | |
| 31 } | |
| OLD | NEW |