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 import("//mojo/public/mojo.gni") | 6 import("//mojo/public/mojo.gni") |
7 import("//mojo/public/tools/bindings/mojom.gni") | 7 import("//mojo/public/tools/bindings/mojom.gni") |
8 | 8 |
9 # We don't support building in the component build since mojo apps are | 9 # We don't support building in the component build since mojo apps are |
10 # inherently components. | 10 # inherently components. |
(...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
348 "//base", | 348 "//base", |
349 "//base:i18n", | 349 "//base:i18n", |
350 "//base/test:test_support", | 350 "//base/test:test_support", |
351 "//testing/gtest", | 351 "//testing/gtest", |
352 "//net:test_support", | 352 "//net:test_support", |
353 "//url", | 353 "//url", |
354 "//mojo/application_manager", | 354 "//mojo/application_manager", |
355 "//mojo/common", | 355 "//mojo/common", |
356 "//mojo/edk/system", | 356 "//mojo/edk/system", |
357 "//mojo/environment:chromium", | 357 "//mojo/environment:chromium", |
358 "//mojo/services/test_service:bindings", | |
359 "//mojo/public/cpp/bindings", | 358 "//mojo/public/cpp/bindings", |
| 359 "//services/test_service:bindings", |
360 ] | 360 ] |
361 | 361 |
362 datadeps = [ | 362 datadeps = [ |
363 "//mojo/services/test_service:test_app", | 363 "//services/test_service:test_app", |
364 "//mojo/services/test_service:test_request_tracker_app", | 364 "//services/test_service:test_request_tracker_app", |
365 ] | 365 ] |
366 | 366 |
367 if (is_android) { | 367 if (is_android) { |
368 deps += [ | 368 deps += [ |
369 # TODO(GYP): | 369 # TODO(GYP): |
370 #'../testing/android/native_test.gyp:native_test_native_code', | 370 #'../testing/android/native_test.gyp:native_test_native_code', |
371 ] | 371 ] |
372 } | 372 } |
373 } | 373 } |
374 | 374 |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
420 | 420 |
421 deps -= [ | 421 deps -= [ |
422 ":lib", | 422 ":lib", |
423 ":external_application_registrar_connection", | 423 ":external_application_registrar_connection", |
424 ":external_application_registrar_bindings", | 424 ":external_application_registrar_bindings", |
425 "//mojo/shell/domain_socket", | 425 "//mojo/shell/domain_socket", |
426 "//mojo/shell/domain_socket:tests", | 426 "//mojo/shell/domain_socket:tests", |
427 ] | 427 ] |
428 } | 428 } |
429 } | 429 } |
OLD | NEW |