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 462 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
473 "//net:crl_set_dump", | 473 "//net:crl_set_dump", |
474 "//net:dns_fuzz_stub", | 474 "//net:dns_fuzz_stub", |
475 "//net:gdig", | 475 "//net:gdig", |
476 "//net:get_server_time", | 476 "//net:get_server_time", |
477 "//net:net_watcher", # TODO(GYP): This should be conditional on use_v8_ in_net | 477 "//net:net_watcher", # TODO(GYP): This should be conditional on use_v8_ in_net |
478 "//net:run_testserver", | 478 "//net:run_testserver", |
479 "//net:stress_cache", | 479 "//net:stress_cache", |
480 "//net:tld_cleanup", | 480 "//net:tld_cleanup", |
481 "//ppapi:pepper_hash_for_uma", | 481 "//ppapi:pepper_hash_for_uma", |
482 "//ppapi:ppapi_perftests", | 482 "//ppapi:ppapi_perftests", |
483 "//third_party/angle/src/tests:angle_end2end_tests", | |
Dirk Pranke
2016/05/31 22:46:28
so, this adds linux (but not cros, and win was alr
Nico
2016/05/31 23:24:05
Yes. Should they build on Android too?
Dirk Pranke
2016/05/31 23:25:53
I do not know.
| |
483 "//third_party/leveldatabase:env_chromium_unittests", | 484 "//third_party/leveldatabase:env_chromium_unittests", |
484 "//third_party/libaddressinput:libaddressinput_unittests", | 485 "//third_party/libaddressinput:libaddressinput_unittests", |
485 ] | 486 ] |
486 } | 487 } |
487 if (!is_android && !is_linux) { | |
488 # TODO(dpranke): Re-enable this once | |
489 # https://chromium-review.googlesource.com/#/c/312298/1 is rolled | |
490 # into chromium. | |
491 deps += [ "//third_party/angle/src/tests:angle_end2end_tests" ] | |
492 } | |
493 | 488 |
494 if (enable_extensions) { | 489 if (enable_extensions) { |
495 deps += [ "//extensions/shell:app_shell" ] | 490 deps += [ "//extensions/shell:app_shell" ] |
496 } | 491 } |
497 | 492 |
498 if (enable_nacl) { | 493 if (enable_nacl) { |
499 deps += [ "//components/nacl/loader:nacl_loader_unittests" ] | 494 deps += [ "//components/nacl/loader:nacl_loader_unittests" ] |
500 | 495 |
501 if (is_linux) { | 496 if (is_linux) { |
502 # TODO(dpranke): Figure out what platforms should actually have this. | 497 # TODO(dpranke): Figure out what platforms should actually have this. |
(...skipping 448 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
951 assert(target_name != "") # Mark as used. | 946 assert(target_name != "") # Mark as used. |
952 sources = invoker.actual_sources | 947 sources = invoker.actual_sources |
953 assert( | 948 assert( |
954 sources == invoker.actual_sources, | 949 sources == invoker.actual_sources, |
955 "Do not use a platform name in your output directory (found \"$root_build_ dir\"). http://crbug.com/548283") | 950 "Do not use a platform name in your output directory (found \"$root_build_ dir\"). http://crbug.com/548283") |
956 } | 951 } |
957 | 952 |
958 assert_valid_out_dir("_unused") { | 953 assert_valid_out_dir("_unused") { |
959 actual_sources = [ "$root_build_dir/foo" ] | 954 actual_sources = [ "$root_build_dir/foo" ] |
960 } | 955 } |
OLD | NEW |