| 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 699 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 710 deps -= [ "//mandoline:all" ] # TODO(GYP) | 710 deps -= [ "//mandoline:all" ] # TODO(GYP) |
| 711 } | 711 } |
| 712 } | 712 } |
| 713 | 713 |
| 714 group("gn_mojo_targets") { | 714 group("gn_mojo_targets") { |
| 715 testonly = true | 715 testonly = true |
| 716 if (is_linux && !is_chromeos) { | 716 if (is_linux && !is_chromeos) { |
| 717 # TODO(GYP): Figure out if any of these should be in gn_all | 717 # TODO(GYP): Figure out if any of these should be in gn_all |
| 718 # and figure out how cross-platform they are | 718 # and figure out how cross-platform they are |
| 719 deps = [ | 719 deps = [ |
| 720 "//chrome/browser/ui/webui/omnibox:mojo_bindings_python", | |
| 721 "//content/public/common:mojo_bindings_python", | |
| 722 "//content/common:mojo_bindings_python", | |
| 723 "//content/test:web_ui_test_mojo_bindings_python", | |
| 724 "//device/battery:mojo_bindings_python", | |
| 725 "//device/vibration:mojo_bindings_python", | |
| 726 "//ipc/mojo:ipc_mojo_perftests", | 720 "//ipc/mojo:ipc_mojo_perftests", |
| 727 "//ipc/mojo:client_channel_python", | |
| 728 "//media/mojo/interfaces:interfaces_python", | |
| 729 "//media/mojo/services:cdm_service", | 721 "//media/mojo/services:cdm_service", |
| 730 "//media/mojo:tests", | 722 "//media/mojo:tests", |
| 731 "//mojo:tests", | 723 "//mojo:tests", |
| 732 "//net/interfaces:interfaces_python", | |
| 733 "//third_party/mojo/src/mojo/edk/js/test:js_integration_tests", | 724 "//third_party/mojo/src/mojo/edk/js/test:js_integration_tests", |
| 734 "//third_party/mojo/src/mojo/edk/js/tests:js_to_cpp_bindings_python", | |
| 735 "//third_party/mojo/src/mojo/public/python:packaged_application", | |
| 736 "//third_party/mojo/src/mojo/public/python:packaged_bindings", | |
| 737 "//third_party/mojo_services/src/accessibility/public/interfaces:interface
s_python", | |
| 738 ] | 725 ] |
| 739 } | 726 } |
| 740 } | 727 } |
| 741 | 728 |
| 742 group("gn_visibility") { | 729 group("gn_visibility") { |
| 743 deps = [ | 730 deps = [ |
| 744 "//build/config/sanitizers:options_sources", | 731 "//build/config/sanitizers:options_sources", |
| 745 | 732 |
| 746 # "//third_party/pdfium:pdfium_embeddertests", # TODO(GYP): visibility? | 733 # "//third_party/pdfium:pdfium_embeddertests", # TODO(GYP): visibility? |
| 747 # "//third_party/pdfium:pdfium_unittests", # TODO(GYP): visibility? | 734 # "//third_party/pdfium:pdfium_unittests", # TODO(GYP): visibility? |
| (...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 946 "//ui/views:views_unittests", # TooltipControllerTest failures | 933 "//ui/views:views_unittests", # TooltipControllerTest failures |
| 947 "//ui/wm:wm_unittests", # PASSES 4/21/2015 | 934 "//ui/wm:wm_unittests", # PASSES 4/21/2015 |
| 948 "//url:url_unittests", # PASSES 4/17/2015 | 935 "//url:url_unittests", # PASSES 4/17/2015 |
| 949 | 936 |
| 950 # TODO(GYP) nacl_integration | 937 # TODO(GYP) nacl_integration |
| 951 # TODO(GYP) telemetry_perf_unittests | 938 # TODO(GYP) telemetry_perf_unittests |
| 952 # TODO(GYP) telemetry_unittests | 939 # TODO(GYP) telemetry_unittests |
| 953 ] | 940 ] |
| 954 } | 941 } |
| 955 } | 942 } |
| OLD | NEW |