| 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 633 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 644 "//third_party/angle:libEGL", | 644 "//third_party/angle:libEGL", |
| 645 "//third_party/angle:libGLESv2", | 645 "//third_party/angle:libGLESv2", |
| 646 "//third_party/leveldatabase:leveldb_test_targets", | 646 "//third_party/leveldatabase:leveldb_test_targets", |
| 647 "//third_party/libjpeg_turbo:simd", | 647 "//third_party/libjpeg_turbo:simd", |
| 648 "//third_party/opus:opus_compare", | 648 "//third_party/opus:opus_compare", |
| 649 "//third_party/opus:opus_demo", | 649 "//third_party/opus:opus_demo", |
| 650 "//third_party/opus:test_opus_api", | 650 "//third_party/opus:test_opus_api", |
| 651 "//third_party/opus:test_opus_decode", | 651 "//third_party/opus:test_opus_decode", |
| 652 "//third_party/opus:test_opus_encode", | 652 "//third_party/opus:test_opus_encode", |
| 653 "//third_party/opus:test_opus_padding", | 653 "//third_party/opus:test_opus_padding", |
| 654 "//third_party/pdfium/third_party:fx_freetype", | |
| 655 "//third_party/webrtc/system_wrappers:field_trial_default", | 654 "//third_party/webrtc/system_wrappers:field_trial_default", |
| 656 "//third_party/webrtc/system_wrappers:metrics_default", | 655 "//third_party/webrtc/system_wrappers:metrics_default", |
| 657 "//ui/display/types", | 656 "//ui/display/types", |
| 658 "//ui/shell_dialogs:shell_dialogs_unittests", | 657 "//ui/shell_dialogs:shell_dialogs_unittests", |
| 659 ] | 658 ] |
| 660 | 659 |
| 661 if (enable_nacl) { | 660 if (enable_nacl) { |
| 662 deps += [ "//native_client/src/trusted/debug_stub:gdb_rsp_unittest" ] | 661 deps += [ "//native_client/src/trusted/debug_stub:gdb_rsp_unittest" ] |
| 663 } | 662 } |
| 664 | 663 |
| (...skipping 411 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1076 assert(target_name != "") # Mark as used. | 1075 assert(target_name != "") # Mark as used. |
| 1077 sources = invoker.actual_sources | 1076 sources = invoker.actual_sources |
| 1078 assert( | 1077 assert( |
| 1079 sources == invoker.actual_sources, | 1078 sources == invoker.actual_sources, |
| 1080 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") | 1079 "Do not use a platform name in your output directory (found \"$root_build_
dir\"). http://crbug.com/548283") |
| 1081 } | 1080 } |
| 1082 | 1081 |
| 1083 assert_valid_out_dir("_unused") { | 1082 assert_valid_out_dir("_unused") { |
| 1084 actual_sources = [ "$root_build_dir/foo" ] | 1083 actual_sources = [ "$root_build_dir/foo" ] |
| 1085 } | 1084 } |
| OLD | NEW |