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

Side by Side Diff: BUILD.gn

Issue 1394983003: openh264_unittests empty dummy test added (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: README.chromium Created 5 years, 2 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
« no previous file with comments | « no previous file | build/all.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
11 import("//build/config/crypto.gni") 11 import("//build/config/crypto.gni")
12 import("//build/config/features.gni") 12 import("//build/config/features.gni")
13 import("//build/config/sanitizers/sanitizers.gni") 13 import("//build/config/sanitizers/sanitizers.gni")
hbos_chromium 2015/10/13 10:21:42 (Changes in this file are due to rebase, sry!)
14 import("//build/config/ui.gni") 14 import("//build/config/ui.gni")
15 import("//build/module_args/v8.gni") 15 import("//build/module_args/v8.gni")
16 import("//media/media_options.gni") 16 import("//media/media_options.gni")
17 17
18 if (is_android) { 18 if (is_android) {
19 import("//build/config/android/config.gni") 19 import("//build/config/android/config.gni")
20 } 20 }
21 21
22 declare_args() { 22 declare_args() {
23 # A list of extra dependencies to add to the root target. This allows a 23 # A list of extra dependencies to add to the root target. This allows a
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 group("both_gn_and_gyp") { 66 group("both_gn_and_gyp") {
67 testonly = true 67 testonly = true
68 deps = [ 68 deps = [
69 "//base:base_unittests", 69 "//base:base_unittests",
70 "//chrome/installer", 70 "//chrome/installer",
71 "//components:components_unittests", 71 "//components:components_unittests",
72 "//net:net_unittests", 72 "//net:net_unittests",
73 "//skia:skia_unittests", 73 "//skia:skia_unittests",
74 "//sql:sql_unittests", 74 "//sql:sql_unittests",
75 "//sync:sync_unit_tests", 75 "//sync:sync_unit_tests",
76 "//third_party/openh264/tests:openh264_unittests",
76 "//ui/base:ui_base_unittests", 77 "//ui/base:ui_base_unittests",
77 "//ui/gfx:gfx_unittests", 78 "//ui/gfx:gfx_unittests",
78 "//url:url_unittests", 79 "//url:url_unittests",
79 ] 80 ]
80 81
81 if (!is_ios) { 82 if (!is_ios) {
82 # TODO(GYP): Figure out which of these should actually build on iOS, 83 # TODO(GYP): Figure out which of these should actually build on iOS,
83 # and whether there should be other targets that are iOS-only and missing. 84 # and whether there should be other targets that are iOS-only and missing.
84 deps += [ 85 deps += [
85 "//cc:cc_unittests", 86 "//cc:cc_unittests",
(...skipping 778 matching lines...) Expand 10 before | Expand all | Expand 10 after
864 if (target_cpu == "x86") { 865 if (target_cpu == "x86") {
865 deps += [ 866 deps += [
866 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009 867 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009
867 ] 868 ]
868 } 869 }
869 } else { 870 } else {
870 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] 871 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ]
871 } 872 }
872 } 873 }
873 } 874 }
OLDNEW
« no previous file with comments | « no previous file | build/all.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698