| 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 672 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 683 } | 683 } |
| 684 } | 684 } |
| 685 | 685 |
| 686 group("gn_mojo_targets") { | 686 group("gn_mojo_targets") { |
| 687 testonly = true | 687 testonly = true |
| 688 if (is_linux && !is_chromeos) { | 688 if (is_linux && !is_chromeos) { |
| 689 # TODO(GYP): Figure out if any of these should be in gn_all | 689 # TODO(GYP): Figure out if any of these should be in gn_all |
| 690 # and figure out how cross-platform they are | 690 # and figure out how cross-platform they are |
| 691 deps = [ | 691 deps = [ |
| 692 "//chrome/browser/ui/webui/omnibox:mojo_bindings_python", | 692 "//chrome/browser/ui/webui/omnibox:mojo_bindings_python", |
| 693 "//components/window_manager/public/interfaces:interfaces_python", | |
| 694 "//content/public/common:mojo_bindings_python", | 693 "//content/public/common:mojo_bindings_python", |
| 695 "//content/common:mojo_bindings_python", | 694 "//content/common:mojo_bindings_python", |
| 696 "//content/test:web_ui_test_mojo_bindings_python", | 695 "//content/test:web_ui_test_mojo_bindings_python", |
| 697 "//device/battery:mojo_bindings_python", | 696 "//device/battery:mojo_bindings_python", |
| 698 "//device/vibration:mojo_bindings_python", | 697 "//device/vibration:mojo_bindings_python", |
| 699 "//ipc/mojo:ipc_mojo_perftests", | 698 "//ipc/mojo:ipc_mojo_perftests", |
| 700 "//ipc/mojo:client_channel_python", | 699 "//ipc/mojo:client_channel_python", |
| 701 "//media/mojo/interfaces:interfaces_python", | 700 "//media/mojo/interfaces:interfaces_python", |
| 702 "//media/mojo/services:cdm_service", | 701 "//media/mojo/services:cdm_service", |
| 703 "//media/mojo:tests", | 702 "//media/mojo:tests", |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 908 "//ui/views:views_unittests", # TooltipControllerTest failures | 907 "//ui/views:views_unittests", # TooltipControllerTest failures |
| 909 "//ui/wm:wm_unittests", # PASSES 4/21/2015 | 908 "//ui/wm:wm_unittests", # PASSES 4/21/2015 |
| 910 "//url:url_unittests", # PASSES 4/17/2015 | 909 "//url:url_unittests", # PASSES 4/17/2015 |
| 911 | 910 |
| 912 # TODO(GYP) nacl_integration | 911 # TODO(GYP) nacl_integration |
| 913 # TODO(GYP) telemetry_perf_unittests | 912 # TODO(GYP) telemetry_perf_unittests |
| 914 # TODO(GYP) telemetry_unittests | 913 # TODO(GYP) telemetry_unittests |
| 915 ] | 914 ] |
| 916 } | 915 } |
| 917 } | 916 } |
| OLD | NEW |