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("//chrome/version.gni") | 7 import("//chrome/version.gni") |
8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
9 | 9 |
10 executable("delegate_execute") { | 10 executable("delegate_execute") { |
(...skipping 26 matching lines...) Expand all Loading... |
37 "delegate_execute_operation.h", | 37 "delegate_execute_operation.h", |
38 "delegate_execute_util.cc", | 38 "delegate_execute_util.cc", |
39 "delegate_execute_util.h", | 39 "delegate_execute_util.h", |
40 "resource.h", | 40 "resource.h", |
41 ] | 41 ] |
42 | 42 |
43 public_deps = [ | 43 public_deps = [ |
44 "//base", | 44 "//base", |
45 "//breakpad:breakpad_handler", | 45 "//breakpad:breakpad_handler", |
46 "//chrome/common:constants", | 46 "//chrome/common:constants", |
47 "//chrome/installer/util", | 47 "//chrome/installer/util:with_no_strings_some_things_wont_work", |
48 "//ui/base", | 48 "//ui/base", |
49 "//ui/gfx", | 49 "//ui/gfx", |
50 "//ui/gfx/geometry", | 50 "//ui/gfx/geometry", |
51 ] | 51 ] |
52 | 52 |
53 if (use_aura) { | 53 if (use_aura) { |
54 public_deps += [ "//win8:metro_viewer_constants" ] | 54 public_deps += [ "//win8:metro_viewer_constants" ] |
55 } | 55 } |
56 | 56 |
57 if (is_chrome_branded) { | 57 if (is_chrome_branded) { |
(...skipping 13 matching lines...) Expand all Loading... |
71 test("delegate_execute_unittests") { | 71 test("delegate_execute_unittests") { |
72 sources = [ | 72 sources = [ |
73 "delegate_execute_util_unittest.cc", | 73 "delegate_execute_util_unittest.cc", |
74 ] | 74 ] |
75 deps = [ | 75 deps = [ |
76 ":lib", | 76 ":lib", |
77 "//base/test:run_all_unittests", | 77 "//base/test:run_all_unittests", |
78 "//testing/gtest", | 78 "//testing/gtest", |
79 ] | 79 ] |
80 } | 80 } |
OLD | NEW |