| 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 481 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 492 "//breakpad:dump_syms($host_toolchain)", | 492 "//breakpad:dump_syms($host_toolchain)", |
| 493 "//breakpad:microdump_stackwalk($host_toolchain)", | 493 "//breakpad:microdump_stackwalk($host_toolchain)", |
| 494 "//breakpad:minidump_dump($host_toolchain)", | 494 "//breakpad:minidump_dump($host_toolchain)", |
| 495 "//breakpad:minidump_stackwalk($host_toolchain)", | 495 "//breakpad:minidump_stackwalk($host_toolchain)", |
| 496 "//components/network_hints/browser", | 496 "//components/network_hints/browser", |
| 497 "//content/public/app:browser", | 497 "//content/public/app:browser", |
| 498 "//content/public/app:child", | 498 "//content/public/app:child", |
| 499 | 499 |
| 500 # TODO(GYP): Remove this when the gles2 tests work | 500 # TODO(GYP): Remove this when the gles2 tests work |
| 501 "//gpu/command_buffer/client:gles2_implementation_no_check", | 501 "//gpu/command_buffer/client:gles2_implementation_no_check", |
| 502 "//gpu/khronos_glcts_support:khronos_glcts_test", # TODO(GYP) crbug.com/4
71903 to make this complete. | |
| 503 "//mojo/edk/test:mojo_public_system_perftests", | 502 "//mojo/edk/test:mojo_public_system_perftests", |
| 504 "//services/shell/public/cpp", | 503 "//services/shell/public/cpp", |
| 505 "//testing/gmock:gmock_main", | 504 "//testing/gmock:gmock_main", |
| 506 "//third_party/codesighs:nm2tsv", | 505 "//third_party/codesighs:nm2tsv", |
| 507 ] | 506 ] |
| 508 | 507 |
| 509 if (!is_android) { | 508 if (!is_android) { |
| 510 deps += [ | 509 deps += [ |
| 511 "//build/sanitizers:copy_llvm_symbolizer", | 510 "//build/sanitizers:copy_llvm_symbolizer", |
| 512 "//chrome/test:chrome_app_unittests", | 511 "//chrome/test:chrome_app_unittests", |
| 512 "//gpu/khronos_glcts_support:khronos_glcts_test", # TODO(GYP) crbug.com
/471903 to make this complete. |
| 513 "//media/cast:cast_benchmarks", | 513 "//media/cast:cast_benchmarks", |
| 514 "//media/cast:tap_proxy", | 514 "//media/cast:tap_proxy", |
| 515 "//skia:filter_fuzz_stub", | 515 "//skia:filter_fuzz_stub", |
| 516 "//skia:image_operations_bench", | 516 "//skia:image_operations_bench", |
| 517 "//sync/tools:sync_client", | 517 "//sync/tools:sync_client", |
| 518 "//sync/tools:sync_listen_notifications", | 518 "//sync/tools:sync_listen_notifications", |
| 519 "//third_party/sqlite:sqlite_shell", | 519 "//third_party/sqlite:sqlite_shell", |
| 520 "//ui/keyboard:keyboard_unittests", | 520 "//ui/keyboard:keyboard_unittests", |
| 521 "//ui/message_center:message_center_unittests", | 521 "//ui/message_center:message_center_unittests", |
| 522 "//ui/snapshot:snapshot_unittests", | 522 "//ui/snapshot:snapshot_unittests", |
| (...skipping 387 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 910 assert(target_name != "") # Mark as used. | 910 assert(target_name != "") # Mark as used. |
| 911 sources = invoker.actual_sources | 911 sources = invoker.actual_sources |
| 912 assert( | 912 assert( |
| 913 sources == invoker.actual_sources, | 913 sources == invoker.actual_sources, |
| 914 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") | 914 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") |
| 915 } | 915 } |
| 916 | 916 |
| 917 assert_valid_out_dir("_unused") { | 917 assert_valid_out_dir("_unused") { |
| 918 actual_sources = [ "$root_build_dir/foo" ] | 918 actual_sources = [ "$root_build_dir/foo" ] |
| 919 } | 919 } |
| OLD | NEW |