Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(71)

Side by Side Diff: chrome/test/BUILD.gn

Issue 876483002: NaCl: Move src/trusted/plugin/ to components/nacl/renderer/plugin/ (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Update #include guards Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//build/module_args/v8.gni") 7 import("//build/module_args/v8.gni")
8 import("//testing/test.gni") 8 import("//testing/test.gni")
9 9
10 # This target exists to reference other test executables to bring these files 10 # This target exists to reference other test executables to bring these files
(...skipping 678 matching lines...) Expand 10 before | Expand all | Expand 10 after
689 } 689 }
690 690
691 if (!enable_one_click_signin) { 691 if (!enable_one_click_signin) {
692 sources -= [ "../browser/ui/sync/one_click_signin_bubble_links_delegate_br owsertest.cc" ] 692 sources -= [ "../browser/ui/sync/one_click_signin_bubble_links_delegate_br owsertest.cc" ]
693 } 693 }
694 if (enable_nacl) { 694 if (enable_nacl) {
695 sources += [ 695 sources += [
696 "../browser/extensions/extension_nacl_browsertest.cc", 696 "../browser/extensions/extension_nacl_browsertest.cc",
697 "../browser/nacl_host/test/gdb_debug_stub_browsertest.cc", 697 "../browser/nacl_host/test/gdb_debug_stub_browsertest.cc",
698 ] 698 ]
699 deps += [ "//ppapi/native_client/src/trusted/plugin:nacl_trusted_plugin" ] 699 deps += [ "//components/nacl/renderer/plugin:nacl_trusted_plugin" ]
700 700
701 if (enable_nacl_untrusted) { 701 if (enable_nacl_untrusted) {
702 sources += [ 702 sources += [
703 "nacl/nacl_browsertest.cc", 703 "nacl/nacl_browsertest.cc",
704 "nacl/nacl_browsertest_uma.cc", 704 "nacl/nacl_browsertest_uma.cc",
705 "nacl/nacl_browsertest_util.cc", 705 "nacl/nacl_browsertest_util.cc",
706 "nacl/nacl_browsertest_util.h", 706 "nacl/nacl_browsertest_util.h",
707 "nacl/pnacl_header_test.cc", 707 "nacl/pnacl_header_test.cc",
708 "nacl/pnacl_header_test.h", 708 "nacl/pnacl_header_test.h",
709 ] 709 ]
(...skipping 463 matching lines...) Expand 10 before | Expand all | Expand 10 after
1173 # TODO(GYP) CDM adapter stuff. 1173 # TODO(GYP) CDM adapter stuff.
1174 #if (enable_pepper_cdms) { 1174 #if (enable_pepper_cdms) {
1175 # deps += [ 1175 # deps += [
1176 # "//media/cdm/ppapi:clearkeycdmadapter", 1176 # "//media/cdm/ppapi:clearkeycdmadapter",
1177 # "//ppapi:ppapi_cpp", 1177 # "//ppapi:ppapi_cpp",
1178 # "//third_party/widevine/cdm:adapter", 1178 # "//third_party/widevine/cdm:adapter",
1179 # ] 1179 # ]
1180 #} 1180 #}
1181 } 1181 }
1182 } 1182 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698