| 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 375 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 386 "//net:dump_cache", | 386 "//net:dump_cache", |
| 387 "//net:gdig", | 387 "//net:gdig", |
| 388 "//net:get_server_time", | 388 "//net:get_server_time", |
| 389 "//net:net_watcher", # TODO(GYP): This should be conditional on use_v8_in
_net | 389 "//net:net_watcher", # TODO(GYP): This should be conditional on use_v8_in
_net |
| 390 "//net:run_testserver", | 390 "//net:run_testserver", |
| 391 "//net:stress_cache", | 391 "//net:stress_cache", |
| 392 "//net:tld_cleanup", | 392 "//net:tld_cleanup", |
| 393 "//ppapi:pepper_hash_for_uma", | 393 "//ppapi:pepper_hash_for_uma", |
| 394 "//ppapi:ppapi_perftests", | 394 "//ppapi:ppapi_perftests", |
| 395 "//sync:run_sync_testserver", | 395 "//sync:run_sync_testserver", |
| 396 "//sync:sync_endtoend_tests", | |
| 397 "//third_party/codesighs:maptsvdifftool", | 396 "//third_party/codesighs:maptsvdifftool", |
| 398 "//third_party/leveldatabase:env_chromium_unittests", | 397 "//third_party/leveldatabase:env_chromium_unittests", |
| 399 "//third_party/libaddressinput:libaddressinput_unittests", | 398 "//third_party/libaddressinput:libaddressinput_unittests", |
| 400 "//third_party/libphonenumber:libphonenumber_unittests", | 399 "//third_party/libphonenumber:libphonenumber_unittests", |
| 401 "//ui/compositor:compositor_unittests", | 400 "//ui/compositor:compositor_unittests", |
| 402 ] | 401 ] |
| 403 | 402 |
| 404 if (enable_extensions) { | 403 if (enable_extensions) { |
| 405 deps += [ "//extensions/shell:app_shell" ] | 404 deps += [ "//extensions/shell:app_shell" ] |
| 406 } | 405 } |
| (...skipping 500 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 907 "//ui/views:views_unittests", # TooltipControllerTest failures | 906 "//ui/views:views_unittests", # TooltipControllerTest failures |
| 908 "//ui/wm:wm_unittests", # PASSES 4/21/2015 | 907 "//ui/wm:wm_unittests", # PASSES 4/21/2015 |
| 909 "//url:url_unittests", # PASSES 4/17/2015 | 908 "//url:url_unittests", # PASSES 4/17/2015 |
| 910 | 909 |
| 911 # TODO(GYP) nacl_integration | 910 # TODO(GYP) nacl_integration |
| 912 # TODO(GYP) telemetry_perf_unittests | 911 # TODO(GYP) telemetry_perf_unittests |
| 913 # TODO(GYP) telemetry_unittests | 912 # TODO(GYP) telemetry_unittests |
| 914 ] | 913 ] |
| 915 } | 914 } |
| 916 } | 915 } |
| OLD | NEW |