| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/sanitizers/sanitizers.gni") | 7 import("//build/config/sanitizers/sanitizers.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//mojo/public/tools/bindings/mojom.gni") | 9 import("//mojo/public/tools/bindings/mojom.gni") |
| 10 import("//tools/grit/repack.gni") | 10 import("//tools/grit/repack.gni") |
| (...skipping 428 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 439 "//blimp/common/proto", | 439 "//blimp/common/proto", |
| 440 "//blimp/engine:app_settings", | 440 "//blimp/engine:app_settings", |
| 441 "//blimp/net", | 441 "//blimp/net", |
| 442 "//blimp/net:test_support", | 442 "//blimp/net:test_support", |
| 443 "//content/public/browser", | 443 "//content/public/browser", |
| 444 "//net", | 444 "//net", |
| 445 "//net:test_support", | 445 "//net:test_support", |
| 446 "//testing/gmock", | 446 "//testing/gmock", |
| 447 "//testing/gtest", | 447 "//testing/gtest", |
| 448 "//third_party/WebKit/public:blink_headers", | 448 "//third_party/WebKit/public:blink_headers", |
| 449 "//ui/base/ime", | 449 "//ui/base:test_support", |
| 450 ] | 450 ] |
| 451 } | 451 } |
| 452 | 452 |
| 453 source_set("unit_tests") { | 453 source_set("unit_tests") { |
| 454 testonly = true | 454 testonly = true |
| 455 | 455 |
| 456 deps = [ | 456 deps = [ |
| 457 ":app_unit_tests", | 457 ":app_unit_tests", |
| 458 ":common_unit_tests", | 458 ":common_unit_tests", |
| 459 ":feature_unit_tests", | 459 ":feature_unit_tests", |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 601 # Include symupload target here as it is needed by the buildbots to upload | 601 # Include symupload target here as it is needed by the buildbots to upload |
| 602 # the symbol file created by dump_syms. | 602 # the symbol file created by dump_syms. |
| 603 deps = [ | 603 deps = [ |
| 604 ":blimp_engine_app", | 604 ":blimp_engine_app", |
| 605 "//breakpad:symupload", | 605 "//breakpad:symupload", |
| 606 dump_syms_label, | 606 dump_syms_label, |
| 607 ] | 607 ] |
| 608 } | 608 } |
| 609 } | 609 } |
| 610 } | 610 } |
| OLD | NEW |