| 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 group("both_gn_and_gyp") { | 65 group("both_gn_and_gyp") { |
| 66 testonly = true | 66 testonly = true |
| 67 deps = [ | 67 deps = [ |
| 68 "//base:base_unittests", | 68 "//base:base_unittests", |
| 69 "//chrome/installer", | 69 "//chrome/installer", |
| 70 "//components:components_unittests", | 70 "//components:components_unittests", |
| 71 "//net:net_unittests", | 71 "//net:net_unittests", |
| 72 "//skia:skia_unittests", | 72 "//skia:skia_unittests", |
| 73 "//sql:sql_unittests", | 73 "//sql:sql_unittests", |
| 74 "//sync:sync_unit_tests", | 74 "//sync:sync_unit_tests", |
| 75 "//third_party/openh264/tests:openh264_unittests", | |
| 76 "//ui/base:ui_base_unittests", | 75 "//ui/base:ui_base_unittests", |
| 77 "//ui/gfx:gfx_unittests", | 76 "//ui/gfx:gfx_unittests", |
| 78 "//url:url_unittests", | 77 "//url:url_unittests", |
| 79 ] | 78 ] |
| 80 | 79 |
| 81 if (!is_ios && !is_android && !is_chromecast) { | 80 if (!is_ios && !is_android && !is_chromecast) { |
| 82 deps += [ | 81 deps += [ |
| 83 "//chrome", | 82 "//chrome", |
| 84 "//chrome/test:browser_tests", | 83 "//chrome/test:browser_tests", |
| 85 "//chrome/test:interactive_ui_tests", | 84 "//chrome/test:interactive_ui_tests", |
| (...skipping 712 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 798 if (target_cpu == "x86") { | 797 if (target_cpu == "x86") { |
| 799 deps += [ | 798 deps += [ |
| 800 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009 | 799 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009 |
| 801 ] | 800 ] |
| 802 } | 801 } |
| 803 } else { | 802 } else { |
| 804 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] | 803 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] |
| 805 } | 804 } |
| 806 } | 805 } |
| 807 } | 806 } |
| OLD | NEW |