| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 import("//build/config/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 | 8 |
| 9 # Convenience meta-target for all of Blimp's production & test code. | 9 # Convenience meta-target for all of Blimp's production & test code. |
| 10 group("blimp") { | 10 group("blimp") { |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 ] | 26 ] |
| 27 } | 27 } |
| 28 | 28 |
| 29 if (is_linux) { | 29 if (is_linux) { |
| 30 deps += [ | 30 deps += [ |
| 31 "//blimp/engine", | 31 "//blimp/engine", |
| 32 "//blimp/engine:blimp_engine_bundle", | 32 "//blimp/engine:blimp_engine_bundle", |
| 33 ] | 33 ] |
| 34 | 34 |
| 35 if (is_official_build) { | 35 if (is_official_build) { |
| 36 deps += [ "//blimp/engine:blimp_symbols" ] | 36 deps += [ |
| 37 "//blimp/engine:blimp_symbols", |
| 38 "//blimp/engine:symupload", |
| 39 ] |
| 37 } | 40 } |
| 38 } | 41 } |
| 39 | 42 |
| 40 if (is_linux && !is_chromeos && use_x11) { | 43 if (is_linux && !is_chromeos && use_x11) { |
| 41 deps += [ "//blimp/client:blimp_shell" ] | 44 deps += [ "//blimp/client:blimp_shell" ] |
| 42 } | 45 } |
| 43 } | 46 } |
| 44 | 47 |
| 45 # Builds all Blimp test code (unit tests, APKs). | 48 # Builds all Blimp test code (unit tests, APKs). |
| 46 group("blimp_tests") { | 49 group("blimp_tests") { |
| (...skipping 26 matching lines...) Expand all Loading... |
| 73 } | 76 } |
| 74 } | 77 } |
| 75 | 78 |
| 76 if (is_linux) { | 79 if (is_linux) { |
| 77 test("blimp_browsertests") { | 80 test("blimp_browsertests") { |
| 78 deps = [ | 81 deps = [ |
| 79 "//blimp/test:engine_browsertests", | 82 "//blimp/test:engine_browsertests", |
| 80 ] | 83 ] |
| 81 } | 84 } |
| 82 } | 85 } |
| OLD | NEW |