| 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 | 6 |
| 7 if (is_android) { | 7 if (is_android) { |
| 8 import("//build/config/android/config.gni") | 8 import("//build/config/android/config.gni") |
| 9 import("//build/config/android/rules.gni") | 9 import("//build/config/android/rules.gni") |
| 10 } | 10 } |
| (...skipping 510 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 521 if (!use_aura) { | 521 if (!use_aura) { |
| 522 sources -= [ | 522 sources -= [ |
| 523 "view_prop.cc", | 523 "view_prop.cc", |
| 524 "view_prop.h", | 524 "view_prop.h", |
| 525 ] | 525 ] |
| 526 } | 526 } |
| 527 } | 527 } |
| 528 | 528 |
| 529 if (is_mac) { | 529 if (is_mac) { |
| 530 deps += [ | 530 deps += [ |
| 531 #TODO(tfarina): port this third_party component to GN. | 531 "//third_party/mozilla", |
| 532 #"//third_party/mozilla", | |
| 533 ] | 532 ] |
| 534 | 533 |
| 535 sources -= [ | 534 sources -= [ |
| 536 "cursor/image_cursors.cc", | 535 "cursor/image_cursors.cc", |
| 537 "cursor/image_cursors.h", | 536 "cursor/image_cursors.h", |
| 538 "dragdrop/drag_utils.cc", | 537 "dragdrop/drag_utils.cc", |
| 539 "dragdrop/drag_utils.h", | 538 "dragdrop/drag_utils.h", |
| 540 ] | 539 ] |
| 541 | 540 |
| 542 libs += [ | 541 libs += [ |
| (...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 896 deps += [ | 895 deps += [ |
| 897 "//ui/aura:test_support", | 896 "//ui/aura:test_support", |
| 898 "//ui/events:gesture_detection", | 897 "//ui/events:gesture_detection", |
| 899 #'../chromeos/chromeos.gyp:chromeos', TODO(GYP) | 898 #'../chromeos/chromeos.gyp:chromeos', TODO(GYP) |
| 900 #'chromeos/ui_chromeos.gyp:ui_chromeos', | 899 #'chromeos/ui_chromeos.gyp:ui_chromeos', |
| 901 ] | 900 ] |
| 902 } | 901 } |
| 903 } | 902 } |
| 904 } | 903 } |
| 905 # TODO(GYP) Mac (ui_unittest_bundle) and Android (ui_unittests_apk). | 904 # TODO(GYP) Mac (ui_unittest_bundle) and Android (ui_unittests_apk). |
| OLD | NEW |