| 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 543 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 554 | 554 |
| 555 if (enable_extensions) { | 555 if (enable_extensions) { |
| 556 deps += [ "//extensions/shell:app_shell" ] | 556 deps += [ "//extensions/shell:app_shell" ] |
| 557 } | 557 } |
| 558 | 558 |
| 559 if (enable_nacl) { | 559 if (enable_nacl) { |
| 560 deps += [ "//components/nacl/loader:nacl_loader_unittests" ] | 560 deps += [ "//components/nacl/loader:nacl_loader_unittests" ] |
| 561 | 561 |
| 562 if (is_linux) { | 562 if (is_linux) { |
| 563 # TODO(dpranke): Figure out what platforms should actually have this. | 563 # TODO(dpranke): Figure out what platforms should actually have this. |
| 564 deps += [ | 564 deps += [ "//components/nacl/loader:nacl_helper" ] |
| 565 "//components/nacl/loader:helper_nonsfi", | 565 |
| 566 "//components/nacl/loader:nacl_helper", | 566 if (enable_nacl_nonsfi) { |
| 567 "//components/nacl/loader:nacl_helper_nonsfi_unittests", | 567 deps += [ |
| 568 ] | 568 "//components/nacl/loader:helper_nonsfi", |
| 569 "//components/nacl/loader:nacl_helper_nonsfi_unittests", |
| 570 ] |
| 571 } |
| 569 } | 572 } |
| 570 } | 573 } |
| 571 | 574 |
| 572 if (media_use_ffmpeg && !is_android) { | 575 if (media_use_ffmpeg && !is_android) { |
| 573 deps += [ "//media:ffmpeg_regression_tests" ] | 576 deps += [ "//media:ffmpeg_regression_tests" ] |
| 574 } | 577 } |
| 575 } | 578 } |
| 576 | 579 |
| 577 if (is_android || (is_linux && !is_chromeos)) { | 580 if (is_android || (is_linux && !is_chromeos)) { |
| 578 deps += [ | 581 deps += [ |
| (...skipping 543 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1122 "//ui/display:display_unittests", | 1125 "//ui/display:display_unittests", |
| 1123 "//ui/events:events_unittests", | 1126 "//ui/events:events_unittests", |
| 1124 "//ui/gfx:gfx_unittests", | 1127 "//ui/gfx:gfx_unittests", |
| 1125 "//ui/gl:gl_unittests", | 1128 "//ui/gl:gl_unittests", |
| 1126 "//ui/keyboard:keyboard_unittests", | 1129 "//ui/keyboard:keyboard_unittests", |
| 1127 "//ui/touch_selection:ui_touch_selection_unittests", | 1130 "//ui/touch_selection:ui_touch_selection_unittests", |
| 1128 "//url:url_unittests", | 1131 "//url:url_unittests", |
| 1129 ] | 1132 ] |
| 1130 } | 1133 } |
| 1131 } | 1134 } |
| OLD | NEW |