Chromium Code Reviews| OLD | NEW |
|---|---|
| 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/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 import("//third_party/WebKit/Source/build/scripts/scripts.gni") | 7 import("//third_party/WebKit/Source/build/scripts/scripts.gni") |
| 8 import("//third_party/WebKit/Source/config.gni") | 8 import("//third_party/WebKit/Source/config.gni") |
| 9 import("//third_party/WebKit/Source/platform/platform.gni") | 9 import("//third_party/WebKit/Source/platform/platform.gni") |
| 10 import("//third_party/WebKit/Source/platform/platform_generated.gni") | 10 import("//third_party/WebKit/Source/platform/platform_generated.gni") |
| (...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 332 "//third_party/WebKit/Source/wtf", | 332 "//third_party/WebKit/Source/wtf", |
| 333 "//third_party/iccjpeg", | 333 "//third_party/iccjpeg", |
| 334 "//third_party/libpng", | 334 "//third_party/libpng", |
| 335 "//third_party/libwebp", | 335 "//third_party/libwebp", |
| 336 "//third_party/ots", | 336 "//third_party/ots", |
| 337 "//third_party/qcms", | 337 "//third_party/qcms", |
| 338 "//url", | 338 "//url", |
| 339 "//v8", | 339 "//v8", |
| 340 ] | 340 ] |
| 341 deps = [ | 341 deps = [ |
| 342 "//content/common:mojo_bindings", | |
|
Yuki
2016/03/22 07:15:03
As you already knew, Blink shouldn't depend on con
RaviKasibhatla
2016/03/23 15:20:50
Done.
My bad. I had added when the new location of
| |
| 342 "//device/battery:mojo_bindings", | 343 "//device/battery:mojo_bindings", |
| 343 "//mojo/public/c/system:for_component", | 344 "//mojo/public/c/system:for_component", |
| 344 "//third_party/WebKit/Source/platform/heap", | 345 "//third_party/WebKit/Source/platform/heap", |
| 345 "//third_party/harfbuzz-ng", | 346 "//third_party/harfbuzz-ng", |
| 346 "//third_party/icu", | 347 "//third_party/icu", |
| 347 "//ui/gfx", | 348 "//ui/gfx", |
| 348 "//ui/gfx/geometry", | 349 "//ui/gfx/geometry", |
| 349 ] | 350 ] |
| 350 | 351 |
| 351 if (is_mac) { | 352 if (is_mac) { |
| (...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 597 } | 598 } |
| 598 | 599 |
| 599 if (current_cpu == "x86" || current_cpu == "x64") { | 600 if (current_cpu == "x86" || current_cpu == "x64") { |
| 600 source_set("blink_x86_sse") { | 601 source_set("blink_x86_sse") { |
| 601 sources = blink_platform_sse_files | 602 sources = blink_platform_sse_files |
| 602 deps = [ | 603 deps = [ |
| 603 ":blink_common", | 604 ":blink_common", |
| 604 ] | 605 ] |
| 605 } | 606 } |
| 606 } | 607 } |
| OLD | NEW |