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

Side by Side Diff: BUILD.gn

Issue 1386273006: [iOS][gn] Port blink_html_tokenizer to build with gn. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ios_testing
Patch Set: Rebase 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 | ios/third_party/blink/BUILD.gn » ('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
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 "//ui/display:display_unittests", 181 "//ui/display:display_unittests",
182 "//ui/events:events_unittests", 182 "//ui/events:events_unittests",
183 "//ui/gl:gl_unittests", 183 "//ui/gl:gl_unittests",
184 "//ui/touch_selection:ui_touch_selection_unittests", 184 "//ui/touch_selection:ui_touch_selection_unittests",
185 ] 185 ]
186 } else { 186 } else {
187 deps += [ 187 deps += [
188 "//ios/net:ios_net_unittests", 188 "//ios/net:ios_net_unittests",
189 "//ios/testing:ocmock_support_unittest", 189 "//ios/testing:ocmock_support_unittest",
190 "//ios/third_party/gcdwebserver", 190 "//ios/third_party/gcdwebserver",
191 "//ios/third_party/blink:html_tokenizer",
191 ] 192 ]
192 } 193 }
193 194
194 deps += root_extra_deps 195 deps += root_extra_deps
195 196
196 if (enable_extensions && !is_mac) { 197 if (enable_extensions && !is_mac) {
197 # TODO(GYP): Get this working on the mac? 198 # TODO(GYP): Get this working on the mac?
198 deps += [ "//extensions/shell:app_shell_unittests" ] 199 deps += [ "//extensions/shell:app_shell_unittests" ]
199 } 200 }
200 201
(...skipping 628 matching lines...) Expand 10 before | Expand all | Expand 10 after
829 if (target_cpu == "x86") { 830 if (target_cpu == "x86") {
830 deps += [ 831 deps += [
831 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009 832 # "//content/shell:crash_service_win64", TODO(GYP): crbug.com/537009
832 ] 833 ]
833 } 834 }
834 } else { 835 } else {
835 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ] 836 deps += [ "//breakpad:minidump_stackwalk($host_toolchain)" ]
836 } 837 }
837 } 838 }
838 } 839 }
OLDNEW
« no previous file with comments | « no previous file | ios/third_party/blink/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698