| 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 618 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 629 if (target_cpu != "arm") { | 629 if (target_cpu != "arm") { |
| 630 deps += [ "//gpu/tools/compositor_model_bench" ] | 630 deps += [ "//gpu/tools/compositor_model_bench" ] |
| 631 } | 631 } |
| 632 } | 632 } |
| 633 } | 633 } |
| 634 | 634 |
| 635 if (is_mac) { | 635 if (is_mac) { |
| 636 deps += [ | 636 deps += [ |
| 637 "//breakpad:crash_inspector", | 637 "//breakpad:crash_inspector", |
| 638 "//breakpad:dump_syms", | 638 "//breakpad:dump_syms", |
| 639 |
| 640 # XPC service is in developement and guarded against the |
| 641 # enable_xpc_notifications, in the meantime however we still |
| 642 # need compile coverage in the bots. |
| 643 "//chrome/browser/ui/cocoa/notifications:alert_notification_xpc_service", |
| 639 "//third_party/apple_sample_code", | 644 "//third_party/apple_sample_code", |
| 640 "//third_party/molokocacao", | 645 "//third_party/molokocacao", |
| 641 ] | 646 ] |
| 642 deps -= [ | 647 deps -= [ |
| 643 # Mojo in GN contains some things which are never compiled in GYP on Mac, | 648 # Mojo in GN contains some things which are never compiled in GYP on Mac, |
| 644 # so compilation fails on Mac. They need porting. | 649 # so compilation fails on Mac. They need porting. |
| 645 "//mojo", | 650 "//mojo", |
| 646 ] | 651 ] |
| 647 } | 652 } |
| 648 | 653 |
| (...skipping 481 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1130 "//ui/display:display_unittests", | 1135 "//ui/display:display_unittests", |
| 1131 "//ui/events:events_unittests", | 1136 "//ui/events:events_unittests", |
| 1132 "//ui/gfx:gfx_unittests", | 1137 "//ui/gfx:gfx_unittests", |
| 1133 "//ui/gl:gl_unittests", | 1138 "//ui/gl:gl_unittests", |
| 1134 "//ui/keyboard:keyboard_unittests", | 1139 "//ui/keyboard:keyboard_unittests", |
| 1135 "//ui/touch_selection:ui_touch_selection_unittests", | 1140 "//ui/touch_selection:ui_touch_selection_unittests", |
| 1136 "//url:url_unittests", | 1141 "//url:url_unittests", |
| 1137 ] | 1142 ] |
| 1138 } | 1143 } |
| 1139 } | 1144 } |
| OLD | NEW |