| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//mojo/public/mojo_application.gni") | 7 import("//mojo/public/mojo_application.gni") |
| 8 import("//mojo/public/mojo_application_manifest.gni") | 8 import("//mojo/public/mojo_application_manifest.gni") |
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 import("//tools/grit/repack.gni") | 10 import("//tools/grit/repack.gni") |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 group("for_mojo_application") { | 114 group("for_mojo_application") { |
| 115 public_deps = [ | 115 public_deps = [ |
| 116 ":mus", | 116 ":mus", |
| 117 ] | 117 ] |
| 118 } | 118 } |
| 119 | 119 |
| 120 group("for_shared_library") { | 120 group("for_shared_library") { |
| 121 public_deps = [ | 121 public_deps = [ |
| 122 ":mus", | 122 ":mus", |
| 123 ] | 123 ] |
| 124 if (!is_component_build) { | |
| 125 deps = [ | |
| 126 "//mojo/gles2", | |
| 127 ] | |
| 128 } | |
| 129 } | 124 } |
| 130 | 125 |
| 131 source_set("test_support") { | 126 source_set("test_support") { |
| 132 testonly = true | 127 testonly = true |
| 133 | 128 |
| 134 sources = [ | 129 sources = [ |
| 135 "../test/native_widget_factory_mus.cc", | 130 "../test/native_widget_factory_mus.cc", |
| 136 "../views_test_suite.cc", | 131 "../views_test_suite.cc", |
| 137 "../views_test_suite.h", | 132 "../views_test_suite.h", |
| 138 "views_mus_test_suite.cc", | 133 "views_mus_test_suite.cc", |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 299 mojo_application_manifest("interactive_ui_tests_manifest") { | 294 mojo_application_manifest("interactive_ui_tests_manifest") { |
| 300 type = "exe" | 295 type = "exe" |
| 301 application_name = "views_mus_interactive_ui_tests" | 296 application_name = "views_mus_interactive_ui_tests" |
| 302 source = "interactive_ui_tests_manifest.json" | 297 source = "interactive_ui_tests_manifest.json" |
| 303 } | 298 } |
| 304 | 299 |
| 305 group("for_component") { | 300 group("for_component") { |
| 306 public_deps = [ | 301 public_deps = [ |
| 307 ":mus", | 302 ":mus", |
| 308 ] | 303 ] |
| 309 deps = [ | |
| 310 "//mojo/gles2", | |
| 311 ] | |
| 312 } | 304 } |
| OLD | NEW |