| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 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:with_no_strings", | 47     "//chrome/installer/util:with_no_strings", | 
| 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) { | 
|  | 54     public_deps += [ "//win8:metro_viewer_constants" ] | 
|  | 55   } | 
|  | 56 | 
| 53   if (is_chrome_branded) { | 57   if (is_chrome_branded) { | 
| 54     public_deps += [ "//google_update" ] | 58     public_deps += [ "//google_update" ] | 
| 55   } | 59   } | 
| 56 } | 60 } | 
| 57 | 61 | 
| 58 process_version("version_resources") { | 62 process_version("version_resources") { | 
| 59   visibility = [ ":*" ] | 63   visibility = [ ":*" ] | 
| 60   sources = [ | 64   sources = [ | 
| 61     "delegate_execute_exe.ver", | 65     "delegate_execute_exe.ver", | 
| 62   ] | 66   ] | 
| 63   output = "$target_gen_dir/delegate_execute_exe.rc" | 67   output = "$target_gen_dir/delegate_execute_exe.rc" | 
| 64   template_file = chrome_version_rc_template | 68   template_file = chrome_version_rc_template | 
| 65 } | 69 } | 
| 66 | 70 | 
| 67 test("delegate_execute_unittests") { | 71 test("delegate_execute_unittests") { | 
| 68   sources = [ | 72   sources = [ | 
| 69     "delegate_execute_util_unittest.cc", | 73     "delegate_execute_util_unittest.cc", | 
| 70   ] | 74   ] | 
| 71   deps = [ | 75   deps = [ | 
| 72     ":lib", | 76     ":lib", | 
| 73     "//base/test:run_all_unittests", | 77     "//base/test:run_all_unittests", | 
| 74     "//testing/gtest", | 78     "//testing/gtest", | 
| 75   ] | 79   ] | 
| 76 } | 80 } | 
| OLD | NEW | 
|---|