| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 # This is the root build file for GN. GN will start processing by loading this | 5 # This is the root build file for GN. GN will start processing by loading this |
| 6 # file, and recursively load all dependencies until all dependencies are either | 6 # file, and recursively load all dependencies until all dependencies are either |
| 7 # resolved or known not to exist (which will cause the build to fail). So if | 7 # resolved or known not to exist (which will cause the build to fail). So if |
| 8 # you add a new build file, there must be some path of dependencies from this | 8 # you add a new build file, there must be some path of dependencies from this |
| 9 # file to your new one or GN won't know about it. | 9 # file to your new one or GN won't know about it. |
| 10 | 10 |
| (...skipping 429 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 440 "//ui/aura:demo", | 440 "//ui/aura:demo", |
| 441 ] | 441 ] |
| 442 } | 442 } |
| 443 } | 443 } |
| 444 | 444 |
| 445 if (is_linux && !is_chromeos) { | 445 if (is_linux && !is_chromeos) { |
| 446 deps += [ | 446 deps += [ |
| 447 # TODO(GYP): Figure out which of these should (and can) build | 447 # TODO(GYP): Figure out which of these should (and can) build |
| 448 # under which other conditions. | 448 # under which other conditions. |
| 449 "//build/sanitizers:copy_llvm_symbolizer", | 449 "//build/sanitizers:copy_llvm_symbolizer", |
| 450 "//chrome/test:chrome_app_unittests", | |
| 451 "//cloud_print:cloud_print_unittests", | 450 "//cloud_print:cloud_print_unittests", |
| 452 "//components/network_hints/browser", | 451 "//components/network_hints/browser", |
| 453 "//content/public/app:browser", | 452 "//content/public/app:browser", |
| 454 "//content/public/app:child", | 453 "//content/public/app:child", |
| 455 | 454 |
| 456 # TODO(GYP): Remove this when the gles2 tests work | 455 # TODO(GYP): Remove this when the gles2 tests work |
| 457 "//gpu/command_buffer/client:gles2_implementation_no_check", | 456 "//gpu/command_buffer/client:gles2_implementation_no_check", |
| 458 | 457 |
| 459 "//gpu/khronos_glcts_support:khronos_glcts_test", # TODO(GYP) crbug.com/4
71903 to make this complete. | 458 "//gpu/khronos_glcts_support:khronos_glcts_test", # TODO(GYP) crbug.com/4
71903 to make this complete. |
| 460 "//media/cast:cast_benchmarks", | 459 "//media/cast:cast_benchmarks", |
| (...skipping 469 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 930 "//ui/views:views_unittests", # TooltipControllerTest failures | 929 "//ui/views:views_unittests", # TooltipControllerTest failures |
| 931 "//ui/wm:wm_unittests", # PASSES 4/21/2015 | 930 "//ui/wm:wm_unittests", # PASSES 4/21/2015 |
| 932 "//url:url_unittests", # PASSES 4/17/2015 | 931 "//url:url_unittests", # PASSES 4/17/2015 |
| 933 | 932 |
| 934 # TODO(GYP) nacl_integration | 933 # TODO(GYP) nacl_integration |
| 935 # TODO(GYP) telemetry_perf_unittests | 934 # TODO(GYP) telemetry_perf_unittests |
| 936 # TODO(GYP) telemetry_unittests | 935 # TODO(GYP) telemetry_unittests |
| 937 ] | 936 ] |
| 938 } | 937 } |
| 939 } | 938 } |
| OLD | NEW |