| 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/bindings/bindings.gni") | 7 import("//third_party/WebKit/Source/bindings/bindings.gni") |
| 8 import("//third_party/WebKit/Source/config.gni") | 8 import("//third_party/WebKit/Source/config.gni") |
| 9 import("//third_party/WebKit/Source/core/core.gni") | 9 import("//third_party/WebKit/Source/core/core.gni") |
| 10 import("//third_party/WebKit/Source/modules/modules.gni") | 10 import("//third_party/WebKit/Source/modules/modules.gni") |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 "//third_party/WebKit/Source:non_test_config", | 32 "//third_party/WebKit/Source:non_test_config", |
| 33 "//third_party/WebKit/Source/core:blink_core_pch", | 33 "//third_party/WebKit/Source/core:blink_core_pch", |
| 34 ] | 34 ] |
| 35 | 35 |
| 36 defines = [ "BLINK_WEB_IMPLEMENTATION=1" ] | 36 defines = [ "BLINK_WEB_IMPLEMENTATION=1" ] |
| 37 | 37 |
| 38 sources = [ | 38 sources = [ |
| 39 "AnimationWorkletProxyClientImpl.cpp", | 39 "AnimationWorkletProxyClientImpl.cpp", |
| 40 "AnimationWorkletProxyClientImpl.h", | 40 "AnimationWorkletProxyClientImpl.h", |
| 41 "AssertMatchingEnums.cpp", | 41 "AssertMatchingEnums.cpp", |
| 42 "AudioOutputDeviceClientImpl.cpp", | |
| 43 "AudioOutputDeviceClientImpl.h", | |
| 44 "ChromeClientImpl.cpp", | 42 "ChromeClientImpl.cpp", |
| 45 "ChromeClientImpl.h", | 43 "ChromeClientImpl.h", |
| 46 "ColorChooserPopupUIController.cpp", | 44 "ColorChooserPopupUIController.cpp", |
| 47 "ColorChooserPopupUIController.h", | 45 "ColorChooserPopupUIController.h", |
| 48 "ColorChooserUIController.cpp", | 46 "ColorChooserUIController.cpp", |
| 49 "ColorChooserUIController.h", | 47 "ColorChooserUIController.h", |
| 50 "CompositorAnimator.h", | 48 "CompositorAnimator.h", |
| 51 "CompositorMutatorImpl.cpp", | 49 "CompositorMutatorImpl.cpp", |
| 52 "CompositorMutatorImpl.h", | 50 "CompositorMutatorImpl.h", |
| 53 "CompositorProxyClientImpl.cpp", | 51 "CompositorProxyClientImpl.cpp", |
| (...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 426 | 424 |
| 427 if (is_android) { | 425 if (is_android) { |
| 428 deps += [ | 426 deps += [ |
| 429 "//base:base_java", | 427 "//base:base_java", |
| 430 "//content/public/android:content_java", | 428 "//content/public/android:content_java", |
| 431 "//content/shell/android:content_shell_assets", | 429 "//content/shell/android:content_shell_assets", |
| 432 "//net/android:net_java", | 430 "//net/android:net_java", |
| 433 ] | 431 ] |
| 434 } | 432 } |
| 435 } | 433 } |
| OLD | NEW |