| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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 component("views_examples_lib") { | 7 component("views_examples_lib") { |
| 8 testonly = true | 8 testonly = true |
| 9 | 9 |
| 10 sources = [ | 10 sources = [ |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 "examples_main.cc", | 98 "examples_main.cc", |
| 99 ] | 99 ] |
| 100 | 100 |
| 101 deps = [ | 101 deps = [ |
| 102 ":views_examples_lib", | 102 ":views_examples_lib", |
| 103 "//base", | 103 "//base", |
| 104 "//base:i18n", | 104 "//base:i18n", |
| 105 "//base/test:test_support", | 105 "//base/test:test_support", |
| 106 "//build/config/sanitizers:deps", | 106 "//build/config/sanitizers:deps", |
| 107 "//build/win:default_exe_manifest", | 107 "//build/win:default_exe_manifest", |
| 108 "//cc/surfaces", |
| 108 "//ui/base", | 109 "//ui/base", |
| 109 "//ui/compositor", | 110 "//ui/compositor", |
| 110 "//ui/compositor:test_support", | 111 "//ui/compositor:test_support", |
| 111 "//ui/gfx", | 112 "//ui/gfx", |
| 112 "//ui/gl/init", | 113 "//ui/gl/init", |
| 113 "//ui/resources:ui_test_pak", | 114 "//ui/resources:ui_test_pak", |
| 114 "//ui/views", | 115 "//ui/views", |
| 115 "//ui/views:test_support", | 116 "//ui/views:test_support", |
| 116 ] | 117 ] |
| 117 | 118 |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 deps = [ | 182 deps = [ |
| 182 "//content:resources", | 183 "//content:resources", |
| 183 ] | 184 ] |
| 184 sources = [ | 185 sources = [ |
| 185 "$root_gen_dir/content/content_resources.pak", | 186 "$root_gen_dir/content/content_resources.pak", |
| 186 ] | 187 ] |
| 187 outputs = [ | 188 outputs = [ |
| 188 "$root_out_dir/content_resources.pak", | 189 "$root_out_dir/content_resources.pak", |
| 189 ] | 190 ] |
| 190 } | 191 } |
| OLD | NEW |