| 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 404 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 415 ] | 415 ] |
| 416 | 416 |
| 417 if (enable_extensions) { | 417 if (enable_extensions) { |
| 418 deps += [ "//extensions/shell:app_shell" ] | 418 deps += [ "//extensions/shell:app_shell" ] |
| 419 } | 419 } |
| 420 | 420 |
| 421 if (enable_nacl) { | 421 if (enable_nacl) { |
| 422 deps += [ "//components/nacl:nacl_loader_unittests" ] | 422 deps += [ "//components/nacl:nacl_loader_unittests" ] |
| 423 } | 423 } |
| 424 | 424 |
| 425 if (enable_nacl && enable_remoting) { | |
| 426 deps += [ "//remoting:remoting_key_tester" ] | |
| 427 } | |
| 428 | |
| 429 if (media_use_ffmpeg) { | 425 if (media_use_ffmpeg) { |
| 430 deps += [ "//media:ffmpeg_regression_tests" ] | 426 deps += [ "//media:ffmpeg_regression_tests" ] |
| 431 } | 427 } |
| 432 | 428 |
| 433 if (use_ash) { | 429 if (use_ash) { |
| 434 deps += [ | 430 deps += [ |
| 435 "//ash:ash_shell", | 431 "//ash:ash_shell", |
| 436 "//ash:ash_unittests", | 432 "//ash:ash_unittests", |
| 437 ] | 433 ] |
| 438 } | 434 } |
| (...skipping 495 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 934 "//ui/views:views_unittests", # TooltipControllerTest failures | 930 "//ui/views:views_unittests", # TooltipControllerTest failures |
| 935 "//ui/wm:wm_unittests", # PASSES 4/21/2015 | 931 "//ui/wm:wm_unittests", # PASSES 4/21/2015 |
| 936 "//url:url_unittests", # PASSES 4/17/2015 | 932 "//url:url_unittests", # PASSES 4/17/2015 |
| 937 | 933 |
| 938 # TODO(GYP) nacl_integration | 934 # TODO(GYP) nacl_integration |
| 939 # TODO(GYP) telemetry_perf_unittests | 935 # TODO(GYP) telemetry_perf_unittests |
| 940 # TODO(GYP) telemetry_unittests | 936 # TODO(GYP) telemetry_unittests |
| 941 ] | 937 ] |
| 942 } | 938 } |
| 943 } | 939 } |
| OLD | NEW |