| 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 516 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 527 "//ui/surface", | 527 "//ui/surface", |
| 528 ] | 528 ] |
| 529 | 529 |
| 530 # TODO(dpranke): These are as-yet untriaged but need at least the above. | 530 # TODO(dpranke): These are as-yet untriaged but need at least the above. |
| 531 deps -= [ | 531 deps -= [ |
| 532 "//chrome", # TODO(GYP) | 532 "//chrome", # TODO(GYP) |
| 533 "//chrome/test:browser_tests", # TODO(GYP) | 533 "//chrome/test:browser_tests", # TODO(GYP) |
| 534 "//chrome/test:interactive_ui_tests", # TODO(GYP) | 534 "//chrome/test:interactive_ui_tests", # TODO(GYP) |
| 535 "//chrome/test:sync_integration_tests", # TODO(GYP) | 535 "//chrome/test:sync_integration_tests", # TODO(GYP) |
| 536 "//chrome/test:unit_tests", # TODO(GYP) | 536 "//chrome/test:unit_tests", # TODO(GYP) |
| 537 "//components:components_browsertests", # TODO(GYP) | |
| 538 "//components:components_unittests", # TODO(GYP) | |
| 539 "//content/test:content_browsertests", # TODO(GYP) | 537 "//content/test:content_browsertests", # TODO(GYP) |
| 540 "//content/test:content_perftests", # TODO(GYP) | 538 "//content/test:content_perftests", # TODO(GYP) |
| 541 "//device:device_unittests", # TODO(GYP) | 539 "//extensions:extensions_browsertests", # TODO(GYP) Needs ContentMain |
| 542 "//extensions:extensions_browsertests", # TODO(GYP) | 540 |
| 543 "//extensions:extensions_unittests", # TODO(GYP) | 541 # Mojo in GN contains some things which are never compiled in GYP on Mac, |
| 542 # so compilation fails on Mac. They need porting. |
| 544 "//mojo", # TODO(GYP) | 543 "//mojo", # TODO(GYP) |
| 545 "//mojo/application/public/cpp", # TODO(GYP) | |
| 546 | |
| 547 # TODO(GYP): Re-enable this as soon as we can link Blink binaries on mac. | |
| 548 "//third_party/WebKit/Source/platform:heap_unittests", | |
| 549 "//third_party/WebKit/Source/platform:platform_unittests", | |
| 550 "//third_party/WebKit/Source/web:webkit_unit_tests", | |
| 551 ] | 544 ] |
| 552 } | 545 } |
| 553 | 546 |
| 554 if (is_win) { | 547 if (is_win) { |
| 555 deps += [ | 548 deps += [ |
| 556 "//base:pe_image_test", | 549 "//base:pe_image_test", |
| 557 "//chrome/installer/setup:setup_unittests", | 550 "//chrome/installer/setup:setup_unittests", |
| 558 "//chrome_elf:chrome_elf_unittests", | 551 "//chrome_elf:chrome_elf_unittests", |
| 559 "//chrome_elf:dll_hash_main", | 552 "//chrome_elf:dll_hash_main", |
| 560 "//cloud_print/service/win:cloud_print_service", | 553 "//cloud_print/service/win:cloud_print_service", |
| (...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 830 if (target_cpu == "x86") { | 823 if (target_cpu == "x86") { |
| 831 deps += [ | 824 deps += [ |
| 832 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009 | 825 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009 |
| 833 ] | 826 ] |
| 834 } | 827 } |
| 835 } else { | 828 } else { |
| 836 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] | 829 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] |
| 837 } | 830 } |
| 838 } | 831 } |
| 839 } | 832 } |
| OLD | NEW |