| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 | 6 |
| 7 source_set("views") { | 7 source_set("views") { |
| 8 cflags = [] | 8 cflags = [] |
| 9 if (is_win) { | 9 if (is_win) { |
| 10 cflags += [ "/wd4800" ] # Value forced to bool. | 10 cflags += [ "/wd4800" ] # Value forced to bool. |
| 11 } | 11 } |
| 12 | 12 |
| 13 sources = [ | 13 sources = [ |
| 14 "ui_devtools_css_agent.cc", | 14 "ui_devtools_css_agent.cc", |
| 15 "ui_devtools_css_agent.h", | 15 "ui_devtools_css_agent.h", |
| 16 "ui_devtools_dom_agent.cc", | 16 "ui_devtools_dom_agent.cc", |
| 17 "ui_devtools_dom_agent.h", | 17 "ui_devtools_dom_agent.h", |
| 18 "ui_devtools_overlay_agent.cc", |
| 19 "ui_devtools_overlay_agent.h", |
| 18 "ui_element.cc", | 20 "ui_element.cc", |
| 19 "ui_element.h", | 21 "ui_element.h", |
| 20 "ui_element_delegate.h", | 22 "ui_element_delegate.h", |
| 21 "view_element.cc", | 23 "view_element.cc", |
| 22 "view_element.h", | 24 "view_element.h", |
| 23 "widget_element.cc", | 25 "widget_element.cc", |
| 24 "widget_element.h", | 26 "widget_element.h", |
| 25 "window_element.cc", | 27 "window_element.cc", |
| 26 "window_element.h", | 28 "window_element.h", |
| 27 ] | 29 ] |
| (...skipping 25 matching lines...) Expand all Loading... |
| 53 "//skia", | 55 "//skia", |
| 54 "//testing/gtest", | 56 "//testing/gtest", |
| 55 "//ui/aura", | 57 "//ui/aura", |
| 56 "//ui/views", | 58 "//ui/views", |
| 57 "//ui/views:test_support", | 59 "//ui/views:test_support", |
| 58 "//ui/wm:wm", | 60 "//ui/wm:wm", |
| 59 ] | 61 ] |
| 60 | 62 |
| 61 configs += [ "//build/config:precompiled_headers" ] | 63 configs += [ "//build/config:precompiled_headers" ] |
| 62 } | 64 } |
| OLD | NEW |