| 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 523 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 534 deps -= [ | 534 deps -= [ |
| 535 "//chrome", # TODO(GYP) | 535 "//chrome", # TODO(GYP) |
| 536 "//chrome/test:browser_tests", # TODO(GYP) | 536 "//chrome/test:browser_tests", # TODO(GYP) |
| 537 "//chrome/test:interactive_ui_tests", # TODO(GYP) | 537 "//chrome/test:interactive_ui_tests", # TODO(GYP) |
| 538 "//chrome/test:sync_integration_tests", # TODO(GYP) | 538 "//chrome/test:sync_integration_tests", # TODO(GYP) |
| 539 "//chrome/test:unit_tests", # TODO(GYP) | 539 "//chrome/test:unit_tests", # TODO(GYP) |
| 540 "//components:components_browsertests", # TODO(GYP) | 540 "//components:components_browsertests", # TODO(GYP) |
| 541 "//components:components_unittests", # TODO(GYP) | 541 "//components:components_unittests", # TODO(GYP) |
| 542 "//content/test:content_browsertests", # TODO(GYP) | 542 "//content/test:content_browsertests", # TODO(GYP) |
| 543 "//content/test:content_perftests", # TODO(GYP) | 543 "//content/test:content_perftests", # TODO(GYP) |
| 544 "//content/test:content_unittests", # TODO(GYP) | |
| 545 "//device:device_unittests", # TODO(GYP) | 544 "//device:device_unittests", # TODO(GYP) |
| 546 "//extensions:extensions_browsertests", # TODO(GYP) | 545 "//extensions:extensions_browsertests", # TODO(GYP) |
| 547 "//extensions:extensions_unittests", # TODO(GYP) | 546 "//extensions:extensions_unittests", # TODO(GYP) |
| 548 "//mojo", # TODO(GYP) | 547 "//mojo", # TODO(GYP) |
| 549 "//mojo/application/public/cpp", # TODO(GYP) | 548 "//mojo/application/public/cpp", # TODO(GYP) |
| 550 | 549 |
| 551 # TODO(GYP): Re-enable this as soon as we can link Blink binaries on mac. | 550 # TODO(GYP): Re-enable this as soon as we can link Blink binaries on mac. |
| 552 "//third_party/WebKit/Source/platform:heap_unittests", | 551 "//third_party/WebKit/Source/platform:heap_unittests", |
| 553 "//third_party/WebKit/Source/platform:platform_unittests", | 552 "//third_party/WebKit/Source/platform:platform_unittests", |
| 554 "//third_party/WebKit/Source/web:webkit_unit_tests", | 553 "//third_party/WebKit/Source/web:webkit_unit_tests", |
| (...skipping 367 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 922 "//ui/views:views_unittests", # TooltipControllerTest failures | 921 "//ui/views:views_unittests", # TooltipControllerTest failures |
| 923 "//ui/wm:wm_unittests", # PASSES 4/21/2015 | 922 "//ui/wm:wm_unittests", # PASSES 4/21/2015 |
| 924 "//url:url_unittests", # PASSES 4/17/2015 | 923 "//url:url_unittests", # PASSES 4/17/2015 |
| 925 | 924 |
| 926 # TODO(GYP) nacl_integration | 925 # TODO(GYP) nacl_integration |
| 927 # TODO(GYP) telemetry_perf_unittests | 926 # TODO(GYP) telemetry_perf_unittests |
| 928 # TODO(GYP) telemetry_unittests | 927 # TODO(GYP) telemetry_unittests |
| 929 ] | 928 ] |
| 930 } | 929 } |
| 931 } | 930 } |
| OLD | NEW |